PodException class

Base exception type for all pod-related errors in JetLeaf.

This exception is typically thrown when a pod cannot be created, resolved, injected, or initialized properly within the application context.

It acts as the root of the JetLeaf pod exception hierarchy and may be subclassed to represent more specific errors (e.g., NoSuchPodDefinitionException, PodCreationException, etc.).


Example

throw PodsException('Failed to create pod of type MyService');
Inheritance
Available extensions

Constructors

PodException(String? message, [Throwable? cause])
Base exception type for all pod-related errors in JetLeaf.

Properties

cause Throwable?
The underlying cause of this exception, if any.
finalinherited
hashCode int
The hash code for this object.
no setterinherited
message String?
The descriptive message for this exception.
finalinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
stackTrace StackTrace?
The stack trace at the point where this error was first thrown.
no setteroverride

Methods

contains(Class? exType) bool
Checks if this exception or any exception in its cause chain is of the specified type.
inherited
getCause() Throwable?
The cause of this exception, if any.
inherited
getMessage() String
The message associated with this exception.
inherited
getMostSpecificCause() Throwable
Returns the most specific cause of this exception.
inherited
getRootCause() Throwable?
Returns the root cause of this exception by traversing the cause chain.
inherited
getStackTrace() StackTrace
The stack trace associated with this exception.
override
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
printStackTrace([bool useErrorPrint = false]) → void

Available on Error, provided by the ErrorExtensions extension

Prints the error along with its stack trace.
printStackTrace([StackTrace? stacktrace, bool useErrorPrint = false]) → void

Available on Exception, provided by the ExceptionExtensions extension

Prints the exception and optional StackTrace if available.
printStackTrace([bool useErrorPrint = false]) → void

Available on Throwable, provided by the ThrowableExtensions extension

Extension on Throwable to support printing stack traces in a unified way.
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited