Package ac.simons.neo4j.migrations.core
Class MigrationsException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
ac.simons.neo4j.migrations.core.MigrationsException
- All Implemented Interfaces:
Serializable
An unchecked exception that is thrown when something didn't work as expected. Most of the time, mitigation from the
call won't be possible.
- Since:
- 0.0.1
- Author:
- Michael J. Simons
- See Also:
-
Constructor Summary
ConstructorDescriptionMigrationsException
(String message) Constructs a new exception with the given message.MigrationsException
(String message, Throwable cause) Constructs a new exception with the given message and 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
-
MigrationsException
Constructs a new exception with the given message.- Parameters:
message
- the detail message
-
MigrationsException
Constructs a new exception with the given message and cause.- Parameters:
message
- the detail messagecause
- the cause of the exception
-