Module net.luis.utils
Class PropertySyntaxException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
net.luis.utils.io.data.property.exception.PropertySyntaxException
- All Implemented Interfaces:
Serializable
Thrown to indicate that the syntax of a property string is invalid.
The exception message will contain the details of the syntax error.
The exception message will contain the details of the syntax error.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a new property syntax exception with no details.PropertySyntaxException
(@Nullable String message) Constructs a new property syntax exception with the specified message.PropertySyntaxException
(@Nullable String message, @Nullable Throwable cause) Constructs a new property syntax exception with the specified message and cause.PropertySyntaxException
(@Nullable Throwable cause) Constructs a new property syntax 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
-
PropertySyntaxException
public PropertySyntaxException()Constructs a new property syntax exception with no details. -
PropertySyntaxException
Constructs a new property syntax exception with the specified message.- Parameters:
message
- The message of the exception
-
PropertySyntaxException
public PropertySyntaxException(@Nullable @Nullable String message, @Nullable @Nullable Throwable cause) Constructs a new property syntax exception with the specified message and cause.- Parameters:
message
- The message of the exceptioncause
- The cause of the exception
-
PropertySyntaxException
Constructs a new property syntax exception with the specified cause.- Parameters:
cause
- The cause of the exception
-