Path: blob/main/src/lwjgl/java/javazoom/jl/decoder/JavaLayerError.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* Work in progress.24*25* API usage errors may be handled by throwing an instance of this26* class, as per JMF 2.0.27*/28public class JavaLayerError extends Error29{30}313233