Package com.invirgance.convirgance
Class ConvirganceException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.invirgance.convirgance.ConvirganceException
- All Implemented Interfaces:
Serializable
Represents a runtime exception specific to the Convirgance API, providing
focused and contained error messages for debugging.
- Author:
- jbanes
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreates a new ConvirganceException.ConvirganceException(String message) Constructs a new exception with the specified message.ConvirganceException(String message, Throwable cause) Constructs a new exception with the specified message and cause.ConvirganceException(Throwable cause) Constructs a new exception with 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
-
ConvirganceException
public ConvirganceException()Creates a new ConvirganceException. -
ConvirganceException
Constructs a new exception with the specified message.- Parameters:
message- The error message explaining what went wrong.
-
ConvirganceException
Constructs a new exception with the specified cause.- Parameters:
cause- The underlying exception that caused this error.
-
ConvirganceException
Constructs a new exception with the specified message and cause.- Parameters:
message- The error message explaining what went wrong.cause- The underlying exception that caused this error.
-