Class ChangeDataFetchingException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.openrefine.operations.exceptions.ChangeDataFetchingException
-
- All Implemented Interfaces:
Serializable
public class ChangeDataFetchingException extends RuntimeException
Exception thrown by operations while computing their associated change data, when they want the problem to halt all computations and report a message to the user.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ChangeDataFetchingException(String message, boolean resumptionSupported)
Constructor
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
ChangeDataFetchingException
public ChangeDataFetchingException(String message, boolean resumptionSupported)
Constructor- Parameters:
message
- the error message to report to the userresumptionSupported
- whether or not it makes sense to start a new process to complete the existing change data. If not, the user will only have the option to cancel the process and the associated operation.
-
-