Class RandomValueException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
ru.objectsfill.annotation_processor.exceptions.RandomValueException
- All Implemented Interfaces:
Serializable
Custom exception class for errors related to generating random values.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionRandomValueException(String message, Throwable cause) Constructs a RandomValueException with the specified detail message and cause.RandomValueException(Throwable cause) Constructs a RandomValueException 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
-
RandomValueException
Constructs a RandomValueException with the specified cause.- Parameters:
cause- the cause of the exception
-
RandomValueException
Constructs a RandomValueException with the specified detail message and cause.- Parameters:
message- the detail messagecause- the cause of the exception
-