1 package com.atlassian.security.auth.trustedapps;
2
3 /**
4 * Thrown by a RequestMatcher if the Request is not to its liking.
5 */
6 public abstract class InvalidRequestException extends TransportException
7 {
8 public InvalidRequestException(TransportErrorMessage error)
9 {
10 super(error);
11 }
12 }