Mentions légales du service

Skip to content
Snippets Groups Projects

Feature/iuainfra 52

Merged Wylem Bars requested to merge feature/IUAINFRA-52 into develop
2 unresolved threads
20 files
+ 301
67
Compare changes
  • Side-by-side
  • Inline
Files
20
package net.ihe.gazelle.app.accesstokenproviderapi.application.exception;
/**
* Class to manage unsupported algorithm exception
*/
public class UnsupportedAlgorithmException extends Exception {
/**
* Constructs a new exception with null as its detail message. The cause is not initialized, and may subsequently be initialized by a call to
* {@link Throwable#initCause(Throwable)}.
*/
public UnsupportedAlgorithmException() {
}
/**
* Constructs a new exception with the specified detail message. The cause is not initialized, and may subsequently be initialized by a call to
* {@link Throwable#initCause(Throwable)}.
*
* @param message the detail message. Can be retrieved by a later call of {@link Throwable#getMessage()} method.
*/
public UnsupportedAlgorithmException(String message) {
super(message);
}
/**
* Constructs a new exception with the specified detail message and cause. Note that the detail/TransactionRecordingDAO message associated with
* cause is not automatically incorporated in this exception's detail message.
*
* @param message the detail message. Can be retrieved by a later call of {@link Throwable#getMessage()} method.
* @param cause the cause. Can be retrieved by a lter call to {@link Throwable#getCause()}. A null value is permitted, and indicates that the
* cause is nonexistent or unknown.
*/
public UnsupportedAlgorithmException(String message, Throwable cause) {
super(message, cause);
}
/**
* Constructs a new exception with the specified detail message, cause, suppression enabled or disabled, and writable stack trace enabled or
* disabled.
*
* @param cause the cause. Can be retrieved by a lter call to {@link Throwable#getCause()}. A null value is permitted, and indicates
* that the cause is nonexistent or unknown.
*/
public UnsupportedAlgorithmException(Throwable cause) {
super(cause);
}
/**
* Constructs a new exception with the specified detail message, cause, suppression enabled or disabled, and writable stack trace enabled or
* disabled.
*
* @param message the detail message. Can be retrieved by a later call of {@link Throwable#getMessage()} method.
* @param cause the cause. Can be retrieved by a lter call to {@link Throwable#getCause()}. A null value is permitted, and indicates
* that the cause is nonexistent or unknown.
* @param enableSuppression whether or not suppression is enabled or disabled
* @param writableStackTrace whether or not the stack trace should be writable
*/
public UnsupportedAlgorithmException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
Loading