java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
io.quarkus.qute.debug.DebuggerException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
DebuggerStoppedException
Base exception class for all Qute debugger-related errors.
This unchecked exception is thrown when an unexpected error occurs during a debugging session, such as communication issues with the Debug Adapter Protocol (DAP), invalid debug events, or internal failures in the Qute debugger implementation.
It serves as a common parent for more specific debugger exceptions and provides constructors to wrap lower-level exceptions.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreates a newDebuggerExceptionwithout any message or cause.Creates a newDebuggerExceptionwith the specified cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
DebuggerException
Creates a newDebuggerExceptionwith the specified cause.- Parameters:
e- the underlying cause of this exception, may benull
-
DebuggerException
public DebuggerException()Creates a newDebuggerExceptionwithout any message or cause.This constructor is typically used when the context of the error is sufficient to identify the problem without additional details.
-