00001 // SharpZipBaseException.cs 00002 // 00003 // Copyright 2004 John Reilly 00004 // 00005 // This file was translated from java, it was part of the GNU Classpath 00006 // Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation, Inc. 00007 // 00008 // This program is free software; you can redistribute it and/or 00009 // modify it under the terms of the GNU General Public License 00010 // as published by the Free Software Foundation; either version 2 00011 // of the License, or (at your option) any later version. 00012 // 00013 // This program 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 00016 // GNU General Public License for more details. 00017 // 00018 // You should have received a copy of the GNU General Public License 00019 // along with this program; if not, write to the Free Software 00020 // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 00021 // 00022 // Linking this library statically or dynamically with other modules is 00023 // making a combined work based on this library. Thus, the terms and 00024 // conditions of the GNU General Public License cover the whole 00025 // combination. 00026 // 00027 // As a special exception, the copyright holders of this library give you 00028 // permission to link this library with independent modules to produce an 00029 // executable, regardless of the license terms of these independent 00030 // modules, and to copy and distribute the resulting executable under 00031 // terms of your choice, provided that you also meet, for each linked 00032 // independent module, the terms and conditions of the license of that 00033 // module. An independent module is a module which is not derived from 00034 // or based on this library. If you modify this library, you may extend 00035 // this exception to your version of the library, but you are not 00036 // obligated to do so. If you do not wish to do so, delete this 00037 // exception statement from your version. 00038 00039 using System; 00040 00041 namespace ICSharpCode.SharpZipLib 00042 { 00047 public class SharpZipBaseException : ApplicationException 00048 { 00052 public SharpZipBaseException() 00053 { 00054 } 00055 00059 public SharpZipBaseException(string msg) : base(msg) 00060 { 00061 } 00062 00069 public SharpZipBaseException(string message, Exception innerException) : base(message, innerException) 00070 { 00071 } 00072 } 00073 }