source: java/net/deterlab/abac/MissingIssuerException.java @ a1a9a47

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

Bump version

  • Property mode set to 100644
File size: 1.1 KB
Line 
1package net.deterlab.abac;
2
3/**
4 * An attempt to validate a credential failed because no issuer was found.  All
5 * these exceptions include a cause from the underlying library that caused
6 * them when possible.
7 * @author <a href="http://abac.deterlab.net">ISI ABAC team</a>
8 * @version 1.5
9 */
10public class MissingIssuerException extends ABACException  {
11    /**
12     * Constructs a new MissingIssuerException.
13     */
14    public MissingIssuerException() { super(); }
15    /**
16     * Constructs a new MissingIssuerException with a detail message.
17     * @param m a String the detail message
18     */
19    public MissingIssuerException(String m) { super(m); }
20    /**
21     * Constructs a new MissingIssuerException with a detail message and a cause.
22     * @param m a String the detail message
23     * @param c a Throwable the cause
24     */
25    public MissingIssuerException(String m, Throwable c) { super(m, c); }
26    /**
27     * Constructs a new MissingIssuerException with a cause.
28     * @param c a Throwable the cause
29     */
30    public MissingIssuerException(Throwable c) { super(c); }
31}
32
Note: See TracBrowser for help on using the repository browser.