adding a test case
[IRC.git] / Robust / src / Benchmarks / SSJava / MP3DecoderInfer / 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 when operations on a\r
23  * <code>Bitstream</code> fail.\r
24  * <p>\r
25  * The exception provides details of the exception condition in two ways:\r
26  * <ol>\r
27  * <li>\r
28  * as an error-code describing the nature of the error</li><br>\r
29  * </br>\r
30  * <li>\r
31  * as the <code>Throwable</code> instance, if any, that was thrown indicating\r
32  * that an exceptional condition has occurred.</li>\r
33  * </ol>\r
34  * </p>\r
35  * \r
36  * @since 0.0.6\r
37  * @author MDM 12/12/99\r
38  */\r
39 \r
40 public class BitstreamException extends JavaLayerException implements BitstreamErrors {\r
41   private int errorcode = UNKNOWN_ERROR;\r
42 \r
43   public BitstreamException(String msg, Throwable t) {\r
44     super(msg, t);\r
45   }\r
46 \r
47   public BitstreamException(int errorcode, Throwable t) {\r
48     this(getErrorString(errorcode), t);\r
49     this.errorcode = errorcode;\r
50   }\r
51 \r
52   public int getErrorCode() {\r
53     return errorcode;\r
54   }\r
55 \r
56   static public String getErrorString(int errorcode) {\r
57     // REVIEW: use resource bundle to map error codes\r
58     // to locale-sensitive strings.\r
59 \r
60     // return "Bitstream errorcode "+Integer.toHexString(errorcode);\r
61     return "Bitstream errorcode " + errorcode;\r
62   }\r
63 \r
64 }\r