Class GeneratorNotConfiguredException
java.lang.Object
java.lang.Throwable
java.lang.Exception
es.uam.eps.ir.relison.graph.generator.exception.GeneratorNotConfiguredException
- All Implemented Interfaces:
java.io.Serializable
public class GeneratorNotConfiguredException
extends java.lang.Exception
Exception for unconfigured generators.
- See Also:
- Serialized Form
-
Constructor Summary
Constructors Constructor Description GeneratorNotConfiguredException(java.lang.String message)
Constructs a GeneratorNotConfiguredException with the given detail message.GeneratorNotConfiguredException(java.lang.String message, java.lang.Throwable cause)
Constructs a GeneratorNotConfiguredException with the given detail message and root cause.GeneratorNotConfiguredException(java.lang.Throwable cause)
Constructs a GeneratorNotConfiguredException with the given root cause. -
Method Summary
-
Constructor Details
-
GeneratorNotConfiguredException
public GeneratorNotConfiguredException(java.lang.String message)Constructs a GeneratorNotConfiguredException with the given detail message.- Parameters:
message
- The detail message of the GeneratorNotConfiguredException.
-
GeneratorNotConfiguredException
public GeneratorNotConfiguredException(java.lang.Throwable cause)Constructs a GeneratorNotConfiguredException with the given root cause.- Parameters:
cause
- The root cause of the GeneratorNotConfiguredException.
-
GeneratorNotConfiguredException
public GeneratorNotConfiguredException(java.lang.String message, java.lang.Throwable cause)Constructs a GeneratorNotConfiguredException with the given detail message and root cause.- Parameters:
message
- The detail message of the GeneratorNotConfiguredException.cause
- The root cause of the GeneratorNotConfiguredException.
-