source: java/net/deterlab/abac/BadSignatureException.java

Last change on this file was a1a9a47, checked in by Ted Faber <faber@…>, 11 years ago

Bump version

  • Property mode set to 100644
File size: 1.0 KB
Line 
1package net.deterlab.abac;
2
3/**
4 * A Bad Signature was found on an ID or Credential.  These exceptions
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>
7 * @version 1.5
8 */
9public 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.