4d11270c14f1216fd3b4ef44630f31f6cdf63569
[IRC.git] / Robust / src / Benchmarks / SSJava / MP3Decoder / JavaLayerErrors.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 /**\r
23  * Exception erorr codes for components of the JavaLayer API.\r
24  */\r
25 public interface JavaLayerErrors\r
26 {\r
27         /**\r
28          * The first bitstream error code. See the {@link DecoderErrors DecoderErrors}\r
29          * interface for other bitstream error codes.\r
30          */\r
31         static public final int BITSTREAM_ERROR = 0x100;\r
32 \r
33         /**\r
34          * The first decoder error code. See the {@link DecoderErrors DecoderErrors}\r
35          * interface for other decoder error codes.\r
36          */\r
37         static public final int DECODER_ERROR = 0x200;\r
38 \r
39 }\r