Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: cryptix/sasl/SaslEncodingException.java


1   package cryptix.sasl;
2   
3   
4   
5   // $Id: SaslEncodingException.java,v 1.1 2001/02/04 00:29:03 keith Exp $
6   
7   //
8   
9   // Copyright (c) 2000-2001 The Cryptix Foundation Limited. All rights reserved.
10  
11  //
12  
13  // Use, modification, copying and distribution of this software is subject to
14  
15  // the terms and conditions of the Cryptix General Licence. You should have
16  
17  // received a copy of the Cryptix General License along with this library; if
18  
19  // not, you can download a copy from <http://www.cryptix.org/>.
20  
21  
22  
23  import javax.security.sasl.SaslException;
24  
25  
26  
27  /**
28  
29   * A checked exception, thrown when an exception occurs while decoding a SASL
30  
31   * buffer and/or a SASL data element from/to a buffer.
32  
33   *
34  
35   * @version $Revision: 1.1 $
36  
37   * @since draft-burdis-cat-srp-sasl-04
38  
39   */
40  
41  public class SaslEncodingException
42  
43     extends SaslException
44  
45  {
46  
47    /**
48  
49     * Constructs a <tt>SaslEncodingException</tt> with no detail message.
50  
51     */
52  
53     public SaslEncodingException()
54  
55     {
56  
57        super();
58  
59     }
60  
61  
62  
63    /**
64  
65     * Constructs a <tt>SaslEncodingException</tt> with the specified detail
66  
67     * message.
68  
69     *
70  
71     * @param s the detail message.
72  
73     */
74  
75     public SaslEncodingException
76  
77        (
78  
79           String arg
80  
81        )
82  
83     {
84  
85        super(arg);
86  
87     }
88  
89  
90  
91  }
92  
93  
94