Last change
on this file since 99e5bfd was
a1a9a47,
checked in by Ted Faber <faber@…>, 11 years ago
|
Bump version
|
-
Property mode set to
100644
|
File size:
1.0 KB
|
Rev | Line | |
---|
[44896b5] | 1 | package net.deterlab.abac; |
---|
| 2 | |
---|
| 3 | /** |
---|
[a7f73b5] | 4 | * A Bad Signature was found on an ID or Credential. These exceptions |
---|
[44896b5] | 5 | * include a cause from the underlying library that caused them when possible. |
---|
| 6 | * @author <a href="http://abac.deterlab.net">ISI ABAC team</a> |
---|
[a1a9a47] | 7 | * @version 1.5 |
---|
[44896b5] | 8 | */ |
---|
| 9 | public class BadSignatureException extends ABACException { |
---|
| 10 | /** |
---|
| 11 | * Constructs a new BadSignatureException. |
---|
| 12 | */ |
---|
| 13 | public BadSignatureException() { super(); } |
---|
| 14 | /** |
---|
| 15 | * Constructs a new BadSignatureException with a detail message. |
---|
| 16 | * @param m a String the detail message |
---|
| 17 | */ |
---|
| 18 | public BadSignatureException(String m) { super(m); } |
---|
| 19 | /** |
---|
| 20 | * Constructs a new BadSignatureException with a detail message and a cause. |
---|
| 21 | * @param m a String the detail message |
---|
| 22 | * @param c a Throwable the cause |
---|
| 23 | */ |
---|
| 24 | public BadSignatureException(String m, Throwable c) { super(m, c); } |
---|
| 25 | /** |
---|
| 26 | * Constructs a new BadSignatureException with a cause. |
---|
| 27 | * @param c a Throwable the cause |
---|
| 28 | */ |
---|
| 29 | public BadSignatureException(Throwable c) { super(c); } |
---|
| 30 | } |
---|
| 31 | |
---|
Note: See
TracBrowser
for help on using the repository browser.