Package org.ametys.core.migration
Class NotMigrableInSafeModeException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.ametys.core.migration.MigrationException
-
- org.ametys.core.migration.NotMigrableInSafeModeException
-
- All Implemented Interfaces:
Serializable
public class NotMigrableInSafeModeException extends MigrationException
Exception that occured during an automatic migration : a specific migration can not be done, but the global process should continue.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NotMigrableInSafeModeException(String message)
Constructs a new exception with the specified detail message.NotMigrableInSafeModeException(String message, Throwable cause)
Constructs a new exception with the specified detail message and cause.NotMigrableInSafeModeException(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 Detail
-
NotMigrableInSafeModeException
public NotMigrableInSafeModeException(String message)
Constructs a new exception with the specified detail message.- Parameters:
message
- the detail message.
-
NotMigrableInSafeModeException
public NotMigrableInSafeModeException(String message, Throwable cause)
Constructs a new exception with the specified detail message and cause.- Parameters:
message
- the detail message.cause
- the cause.
-
NotMigrableInSafeModeException
public NotMigrableInSafeModeException(Throwable cause)
Constructs a new exception with the specified cause.- Parameters:
cause
- the specified cause.
-
-