Class UntrainedException
java.lang.Object
java.lang.Throwable
java.lang.Exception
es.uam.eps.ir.relison.links.linkprediction.supervised.classifiers.exceptions.UntrainedException
- All Implemented Interfaces:
java.io.Serializable
public class UntrainedException
extends java.lang.Exception
Exception which is thrown when a pattern cannot be classified, since the
model has not been built.
- See Also:
- Serialized Form
-
Constructor Summary
Constructors Constructor Description UntrainedException(java.lang.String message)
Constructs a UntrainedException with the given detail message.UntrainedException(java.lang.String message, java.lang.Throwable cause)
Constructs a UntrainedException with the given detail message and root cause.UntrainedException(java.lang.Throwable cause)
Constructs a UntrainedException with the given root cause. -
Method Summary
-
Constructor Details
-
UntrainedException
public UntrainedException(java.lang.String message)Constructs a UntrainedException with the given detail message.- Parameters:
message
- The detail message of the UntrainedException.
-
UntrainedException
public UntrainedException(java.lang.Throwable cause)Constructs a UntrainedException with the given root cause.- Parameters:
cause
- The root cause of the UntrainedException.
-
UntrainedException
public UntrainedException(java.lang.String message, java.lang.Throwable cause)Constructs a UntrainedException with the given detail message and root cause.- Parameters:
message
- The detail message of the UntrainedException.cause
- The root cause of the UntrainedException.
-