Package org.fcrepo.kernel.api.exception
Class UnsupportedAlgorithmException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.fcrepo.kernel.api.exception.RepositoryRuntimeException
-
- org.fcrepo.kernel.api.exception.UnsupportedAlgorithmException
-
- All Implemented Interfaces:
Serializable
public class UnsupportedAlgorithmException extends RepositoryRuntimeException
Thrown in circumstances where a client has used an unknown or unsupported hash algorithm in a request, e.g. with `Digest` or `Want-Digest`.- Since:
- 2017-09-12
- Author:
- harring
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UnsupportedAlgorithmException(String message)
Exception with messageUnsupportedAlgorithmException(String message, Throwable rootCause)
Ordinary 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
-
UnsupportedAlgorithmException
public UnsupportedAlgorithmException(String message)
Exception with message- Parameters:
message
- the message
-
UnsupportedAlgorithmException
public UnsupportedAlgorithmException(String message, Throwable rootCause)
Ordinary constructor.- Parameters:
message
- the messagerootCause
- the root cause
-
-