1 package com.atlassian.asap.api.exception;
2
3 /**
4 * Thrown when an incoming HTTP request is authentic but is not authorized.
5 */
6 public class AuthorizationFailedException extends Exception {
7 public AuthorizationFailedException(String message) {
8 super(message);
9 }
10 }