public class RecommenderBuildException extends RuntimeException
Exception thrown when there is an error building a recommender.
Constructor and Description |
---|
RecommenderBuildException()
Consruct a new recommender build exception.
|
RecommenderBuildException(String message)
Construct exception with a message.
|
RecommenderBuildException(String message,
Throwable cause)
Construct exception with a message and cause.
|
RecommenderBuildException(Throwable cause)
Construct an exception with a cause.
|
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
public RecommenderBuildException()
Consruct a new recommender build exception.
public RecommenderBuildException(String message)
Construct exception with a message.
message
- The exception’s message.public RecommenderBuildException(String message, Throwable cause)
Construct exception with a message and cause.
message
- The exception message.cause
- The exception cause.public RecommenderBuildException(Throwable cause)
Construct an exception with a cause.
cause
- The underlying cause of the build exception.