Class InvalidExternalDataException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- ch.systemsx.cisd.common.exceptions.HighLevelException
-
- ch.systemsx.cisd.common.exceptions.InvalidExternalDataException
-
- All Implemented Interfaces:
java.io.Serializable
public class InvalidExternalDataException extends HighLevelException
Data provided to the system from another system is invalid. This class is supposed to be used in cases where the data cannot be attributed to any user, but rather another system.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description InvalidExternalDataException(java.lang.String message)
InvalidExternalDataException(java.lang.String message, java.lang.Throwable cause)
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static InvalidExternalDataException
fromTemplate(java.lang.String messageTemplate, java.lang.Object... args)
Creates anInvalidExternalDataException
using aFormatter
.static InvalidExternalDataException
fromTemplate(java.lang.Throwable cause, java.lang.String messageTemplate, java.lang.Object... args)
Creates anInvalidExternalDataException
using aFormatter
.-
Methods inherited from class ch.systemsx.cisd.common.exceptions.HighLevelException
isRetriable, isRetriable
-
-
-
-
Method Detail
-
fromTemplate
public static InvalidExternalDataException fromTemplate(java.lang.String messageTemplate, java.lang.Object... args)
Creates anInvalidExternalDataException
using aFormatter
.
-
fromTemplate
public static InvalidExternalDataException fromTemplate(java.lang.Throwable cause, java.lang.String messageTemplate, java.lang.Object... args)
Creates anInvalidExternalDataException
using aFormatter
.
-
-