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

    Methods inherited from class java.lang.Throwable

    addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • 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.