00001 /* 00002 * Copyright (c) 2004 MUSIC TECHNOLOGY GROUP (MTG) 00003 * UNIVERSITAT POMPEU FABRA 00004 * 00005 * 00006 * This program is free software; you can redistribute it and/or modify 00007 * it under the terms of the GNU General Public License as published by 00008 * the Free Software Foundation; either version 2 of the License, or 00009 * (at your option) any later version. 00010 * 00011 * This program is distributed in the hope that it will be useful, 00012 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00014 * GNU General Public License for more details. 00015 * 00016 * You should have received a copy of the GNU General Public License 00017 * along with this program; if not, write to the Free Software 00018 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00019 * 00020 */ 00021 00022 #include "ErrSoundFileIO.hxx" 00023 00024 namespace CLAM 00025 { 00026 ErrSoundFileIO::ErrSoundFileIO() throw() 00027 : ErrProcessingObj( ) 00028 { 00029 } 00030 00031 ErrSoundFileIO::ErrSoundFileIO( const char* msg ) throw () 00032 : ErrProcessingObj( msg ) 00033 { 00034 } 00035 00036 ErrSoundFileIO::ErrSoundFileIO( const ErrSoundFileIO& obj ) throw () 00037 : ErrProcessingObj( obj ) 00038 { 00039 } 00040 00041 ErrSoundFileIO::~ErrSoundFileIO() throw() 00042 { 00043 } 00044 00045 UnavailableSoundFile::UnavailableSoundFile() throw() 00046 : ErrSoundFileIO() 00047 { 00048 } 00049 00050 UnavailableSoundFile::UnavailableSoundFile( const char* msg ) throw () 00051 : ErrSoundFileIO( msg ) 00052 { 00053 } 00054 00055 UnavailableSoundFile::UnavailableSoundFile( const UnavailableSoundFile& obj ) throw() 00056 : ErrSoundFileIO( obj ) 00057 { 00058 } 00059 00060 UnavailableSoundFile::~UnavailableSoundFile() throw() 00061 { 00062 } 00063 00064 UnsupportedSoundFileSampleEncoding::UnsupportedSoundFileSampleEncoding() throw() 00065 : ErrSoundFileIO() 00066 { 00067 } 00068 00069 UnsupportedSoundFileSampleEncoding::UnsupportedSoundFileSampleEncoding( const char* msg ) throw () 00070 : ErrSoundFileIO( msg ) 00071 { 00072 } 00073 00074 UnsupportedSoundFileSampleEncoding::UnsupportedSoundFileSampleEncoding( const UnsupportedSoundFileSampleEncoding& obj ) throw() 00075 : ErrSoundFileIO( obj ) 00076 { 00077 } 00078 00079 UnsupportedSoundFileSampleEncoding::~UnsupportedSoundFileSampleEncoding() throw() 00080 { 00081 } 00082 00083 00084 UnsupportedSoundFileFormat::UnsupportedSoundFileFormat() throw() 00085 : ErrSoundFileIO() 00086 { 00087 } 00088 00089 UnsupportedSoundFileFormat::UnsupportedSoundFileFormat( const char* msg ) throw () 00090 : ErrSoundFileIO( msg ) 00091 { 00092 } 00093 00094 UnsupportedSoundFileFormat::UnsupportedSoundFileFormat( const UnsupportedSoundFileFormat& obj ) throw() 00095 : ErrSoundFileIO( obj ) 00096 { 00097 } 00098 00099 UnsupportedSoundFileFormat::~UnsupportedSoundFileFormat() throw() 00100 { 00101 } 00102 00103 00104 } 00105