00001 /* 00002 * C S O U N D V S T 00003 * 00004 * A VST plugin version of Csound, with Python scripting. 00005 * 00006 * L I C E N S E 00007 * 00008 * This software is free software; you can redistribute it and/or 00009 * modify it under the terms of the GNU Lesser General Public 00010 * License as published by the Free Software Foundation; either 00011 * version 2.1 of the License, or (at your option) any later version. 00012 * 00013 * This software is distributed in the hope that it will be useful, 00014 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00015 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00016 * Lesser General Public License for more details. 00017 * 00018 * You should have received a copy of the GNU Lesser General Public 00019 * License along with this software; if not, write to the Free Software 00020 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00021 */ 00022 #ifndef EXCEPTION_H 00023 #define EXCEPTION_H 00024 #include "Platform.hpp" 00025 #ifdef SWIG 00026 %module CsoundAC 00027 %{ 00028 #include <string> 00029 %} 00030 #else 00031 #include <string> 00032 #endif 00033 00034 namespace csound 00035 { 00039 class Exception 00040 { 00041 std::string message; 00042 public: 00043 Exception(std::string message_) : 00044 message(message_) 00045 { 00046 } 00047 virtual ~Exception() 00048 { 00049 } 00050 std::string getMessage() const 00051 { 00052 return message; 00053 } 00054 }; 00055 } 00056 00057 #endif