Error Handling
[!TIP]
Location within the framework
Hive-agent-framework/error.
Error handling is a critical part of any JavaScript application, especially when dealing with asynchronous operations, various error types, and error propagation across multiple layers. In the Hive Agent Framework, we provide a robust and consistent error-handling structure that ensures reliability and ease of debugging.
The FrameworkError class
FrameworkError classAll errors thrown within the Hive Agent Framework extend from the base FrameworkError class, which itself extends Node.js's native AggregateError.
Benefits of using FrameworkError:
Multiple Error Handling: Supports handling multiple errors simultaneously, which is particularly useful in asynchronous or concurrent operations.
Preserved Error Chains: Retains the full history of errors, giving developers greater context for debugging.
Consistent Structure: All errors across the framework share a uniform structure, simplifying error tracking and management.
Native Support: Built on native Node.js functionality, avoiding the need for additional dependencies while leveraging familiar mechanisms.
Utility Functions: Includes methods for formatting error stack traces and explanations, making them suitable for use with LLMs and other external tools.
This structure ensures that users can trace the complete error history while clearly identifying any errors originating from the Hive Agent Framework.
import { FrameworkError } from "Hive-agent-framework/errors";
const error = new FrameworkError(
"Function 'getUser' has failed.",
[
new FrameworkError("Cannot retrieve data from the API.", [
new Error("User with given ID does not exist!"),
]),
],
{
context: { input: { id: "123" } },
isFatal: true,
isRetryable: false,
},
);
console.log("Message", error.message); // Main error message
console.log("Meta", { fatal: error.isFatal, retryable: error.isRetryable }); // Is the error fatal/retryable?
console.log("Context", error.context); // Context in which the error occurred
console.log(error.explain()); // Human-readable format without stack traces (ideal for LLMs)
console.log(error.dump()); // Full error dump, including sub-errors
console.log(error.getCause()); // Retrieve the initial cause of the errorSource: examples/errors/base.ts
[!NOTE]
Every error thrown from the framework is an instance of the
FrameworkErrorclass, ensuring consistency across the codebase.
[!TIP]
The
explain()method is particularly useful for returning a simplified, human-readable error message to an LLM, as used by the Hive Agent.
Specialized Error Classes
The Hive Agent Framework extends FrameworkError to create specialized error classes for different components. This ensures that each part of the framework has clear and well-defined error types, improving debugging and error handling.
[!TIP]
Casting an unknown error to a
FrameworkErrorcan be done by calling theFrameworkError.ensurestatic method (example).
Tools
When a tool encounters an error, it throws a ToolError, which extends FrameworkError. If input validation fails, a ToolInputValidationError (which extends ToolError) is thrown.
Source: examples/errors/tool.ts
[!TIP]
If you throw a
ToolErrorintentionally in a custom tool, the framework will not apply any additional "wrapper" errors, preserving the original error context.
Agents
Throw AgentError class which extends FrameworkError class.
Prompt Templates
Throw PromptTemplateError class which extends FrameworkError class.
Loggers
Throw LoggerError class which extends FrameworkError class.
Serializers
Throw SerializerError class which extends FrameworkError class.