mp3decoder finally passes the flow-down rule checking.
[IRC.git] / Robust / src / Tests / ssJava / mp3decoder / BitstreamException.java
1 /*\r
2  * 11/19/04             1.0 moved to LGPL.\r
3  * 12/12/99             Initial version.        mdm@techie.com\r
4  *-----------------------------------------------------------------------\r
5  *   This program is free software; you can redistribute it and/or modify\r
6  *   it under the terms of the GNU Library General Public License as published\r
7  *   by the Free Software Foundation; either version 2 of the License, or\r
8  *   (at your option) any later version.\r
9  *\r
10  *   This program is distributed in the hope that it will be useful,\r
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of\r
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
13  *   GNU Library General Public License for more details.\r
14  *\r
15  *   You should have received a copy of the GNU Library General Public\r
16  *   License along with this program; if not, write to the Free Software\r
17  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.\r
18  *----------------------------------------------------------------------\r
19  */\r
20 \r
21 /**\r
22  * Instances of <code>BitstreamException</code> are thrown \r
23  * when operations on a <code>Bitstream</code> fail. \r
24  * <p>\r
25  * The exception provides details of the exception condition \r
26  * in two ways:\r
27  * <ol><li>\r
28  *              as an error-code describing the nature of the error\r
29  * </li><br></br><li>\r
30  *              as the <code>Throwable</code> instance, if any, that was thrown\r
31  *              indicating that an exceptional condition has occurred. \r
32  * </li></ol></p>\r
33  * \r
34  * @since 0.0.6\r
35  * @author MDM  12/12/99\r
36  */\r
37 @LATTICE("E")\r
38 public class BitstreamException extends JavaLayerException\r
39         implements BitstreamErrors\r
40 {       \r
41         @LOC("E") private int errorcode = UNKNOWN_ERROR;\r
42         \r
43         public BitstreamException(String msg, Throwable t)\r
44         {\r
45                 super(msg, t);  \r
46         }\r
47         \r
48         public BitstreamException(int errorcode, Throwable t)\r
49         {\r
50                 this(getErrorString(errorcode), t);\r
51                 this.errorcode = errorcode;\r
52         }\r
53         \r
54         public int getErrorCode()\r
55         {\r
56                 return errorcode;       \r
57         }\r
58         \r
59         \r
60         static public String getErrorString(int errorcode)\r
61         {\r
62                 // REVIEW: use resource bundle to map error codes\r
63                 // to locale-sensitive strings.\r
64                 \r
65 //              return "Bitstream errorcode "+Integer.toHexString(errorcode);\r
66                 return "Bitstream errorcode "+errorcode;\r
67         }\r
68         \r
69         \r
70 }\r