add another test case for ssjava:
[IRC.git] / Robust / src / Tests / ssJava / mp3decoder / DecoderException.java
1 /*\r
2  * 11/19/04             1.0 moved to LGPL.\r
3  * 01/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 package javazoom.jl.decoder;\r
22 \r
23 /**\r
24  * The <code>DecoderException</code> represents the class of\r
25  * errors that can occur when decoding MPEG audio. \r
26  * \r
27  * @author MDM\r
28  */\r
29 public class DecoderException extends JavaLayerException\r
30         implements DecoderErrors\r
31 {       \r
32         private int             errorcode = UNKNOWN_ERROR;\r
33         \r
34         public DecoderException(String msg, Throwable t)\r
35         {\r
36                 super(msg, t);  \r
37         }\r
38         \r
39         public DecoderException(int errorcode, Throwable t)\r
40         {\r
41                 this(getErrorString(errorcode), t);\r
42                 this.errorcode = errorcode;\r
43         }\r
44         \r
45         public int getErrorCode()\r
46         {\r
47                 return errorcode;       \r
48         }\r
49         \r
50         \r
51         static public String getErrorString(int errorcode)\r
52         {\r
53                 // REVIEW: use resource file to map error codes\r
54                 // to locale-sensitive strings. \r
55                 \r
56                 return "Decoder errorcode "+Integer.toHexString(errorcode);\r
57         }\r
58         \r
59         \r
60 }\r
61 \r