Path: blob/main/src/lwjgl/java/javazoom/jl/decoder/DecoderErrors.java
8650 views
/*1* 09/26/08 throw exception on subbband alloc error: Christopher G. Jennings ([email protected])2* 11/19/04 1.0 moved to LGPL.3* 01/12/99 Initial version. [email protected]4*-----------------------------------------------------------------------5* This program is free software; you can redistribute it and/or modify6* it under the terms of the GNU Library General Public License as published7* by the Free Software Foundation; either version 2 of the License, or8* (at your option) any later version.9*10* This program is distributed in the hope that it will be useful,11* but WITHOUT ANY WARRANTY; without even the implied warranty of12* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the13* GNU Library General Public License for more details.14*15* You should have received a copy of the GNU Library General Public16* License along with this program; if not, write to the Free Software17* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.18*----------------------------------------------------------------------19*/2021package javazoom.jl.decoder;2223/**24* This interface provides constants describing the error25* codes used by the Decoder to indicate errors.26*27* @author MDM28*/29public interface DecoderErrors extends JavaLayerErrors30{3132public static final int UNKNOWN_ERROR = DECODER_ERROR + 0;3334/**35* Layer not supported by the decoder.36*/37public static final int UNSUPPORTED_LAYER = DECODER_ERROR + 1;3839/**40* Illegal allocation in subband layer. Indicates a corrupt stream.41*/42public static final int ILLEGAL_SUBBAND_ALLOCATION = DECODER_ERROR + 2;4344}454647