Class ConvirganceException

All Implemented Interfaces:
Serializable

public class ConvirganceException extends RuntimeException
Represents a runtime exception specific to the Convirgance API, providing focused and contained error messages for debugging.
Author:
jbanes
See Also:
  • Constructor Details

    • ConvirganceException

      public ConvirganceException()
      Creates a new ConvirganceException.
    • ConvirganceException

      public ConvirganceException(String message)
      Constructs a new exception with the specified message.
      Parameters:
      message - The error message explaining what went wrong.
    • ConvirganceException

      public ConvirganceException(Throwable cause)
      Constructs a new exception with the specified cause.
      Parameters:
      cause - The underlying exception that caused this error.
    • ConvirganceException

      public ConvirganceException(String message, Throwable cause)
      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.