Package org.knime.core.webui.data
Class DataServiceException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.knime.core.webui.data.DataServiceException
- All Implemented Interfaces:
Serializable
This exception can be thrown during a data service invocation or assembly of initial data. While throwing any other
RuntimeException would be handled as an internal error by the framework, a DataServiceException is
handled as an expected error, which was anticipated by the node developer and which the user is expected to be able
to resolve.- Author:
- Marc Bux, KNIME GmbH, Berlin, Germany
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDataServiceException(String message) DataServiceException(String message, String details) DataServiceException(String message, String details, Throwable cause) DataServiceException(String message, Throwable cause) -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
DataServiceException
- Parameters:
message- a message describing the this exception
-
DataServiceException
- Parameters:
message- a message describing the this exceptioncause- the throwable causing this exception
-
DataServiceException
- Parameters:
message- a message describing the this exceptiondetails- a message providing further details about this exception
-
DataServiceException
- Parameters:
message- a message describing the this exceptiondetails- a message providing further details about this exceptioncause- the throwable causing this exception
-
-
Method Details
-
getDetails
- Returns:
- the message providing further details about this exception
-