Path: blob/main/src/lwjgl/java/javazoom/jl/decoder/JavaLayerErrors.java
8650 views
/*1* 11/19/04 1.0 moved to LGPL.2* 12/12/99 Initial version. [email protected]3*-----------------------------------------------------------------------4* This program is free software; you can redistribute it and/or modify5* it under the terms of the GNU Library General Public License as published6* by the Free Software Foundation; either version 2 of the License, or7* (at your option) any later version.8*9* This program is distributed in the hope that it will be useful,10* but WITHOUT ANY WARRANTY; without even the implied warranty of11* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12* GNU Library General Public License for more details.13*14* You should have received a copy of the GNU Library General Public15* License along with this program; if not, write to the Free Software16* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.17*----------------------------------------------------------------------18*/1920package javazoom.jl.decoder;2122/**23* Exception error codes for components of the JavaLayer API.24*/25public interface JavaLayerErrors26{27/**28* The first bitstream error code. See the {@link DecoderErrors DecoderErrors}29* interface for other bitstream error codes.30*/31public static final int BITSTREAM_ERROR = 0x100;3233/**34* The first decoder error code. See the {@link DecoderErrors DecoderErrors}35* interface for other decoder error codes.36*/37public static final int DECODER_ERROR = 0x200;3839}404142