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