1 package com.atlassian.asap.core.exception;
2
3 import com.atlassian.asap.api.exception.InvalidTokenException;
4
5 /**
6 * Thrown if an incoming token is signed using an unsupported algorithm.
7 */
8 public class UnsupportedAlgorithmException extends InvalidTokenException {
9 public UnsupportedAlgorithmException(String message) {
10 super(message);
11 }
12
13 public UnsupportedAlgorithmException(String message, Throwable cause) {
14 super(message, cause);
15 }
16
17 public UnsupportedAlgorithmException(Throwable cause) {
18 super(cause);
19 }
20 }