| 1 | // SharpZipBaseException.cs
|
|---|
| 2 | //
|
|---|
| 3 | // Copyright 2004 John Reilly
|
|---|
| 4 | //
|
|---|
| 5 | // This program is free software; you can redistribute it and/or
|
|---|
| 6 | // modify it under the terms of the GNU General Public License
|
|---|
| 7 | // as published by the Free Software Foundation; either version 2
|
|---|
| 8 | // of the License, or (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 of
|
|---|
| 12 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|---|
| 13 | // GNU General Public License for more details.
|
|---|
| 14 | //
|
|---|
| 15 | // You should have received a copy of the GNU General Public License
|
|---|
| 16 | // along with this program; if not, write to the Free Software
|
|---|
| 17 | // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|---|
| 18 | //
|
|---|
| 19 | // Linking this library statically or dynamically with other modules is
|
|---|
| 20 | // making a combined work based on this library. Thus, the terms and
|
|---|
| 21 | // conditions of the GNU General Public License cover the whole
|
|---|
| 22 | // combination.
|
|---|
| 23 | //
|
|---|
| 24 | // As a special exception, the copyright holders of this library give you
|
|---|
| 25 | // permission to link this library with independent modules to produce an
|
|---|
| 26 | // executable, regardless of the license terms of these independent
|
|---|
| 27 | // modules, and to copy and distribute the resulting executable under
|
|---|
| 28 | // terms of your choice, provided that you also meet, for each linked
|
|---|
| 29 | // independent module, the terms and conditions of the license of that
|
|---|
| 30 | // module. An independent module is a module which is not derived from
|
|---|
| 31 | // or based on this library. If you modify this library, you may extend
|
|---|
| 32 | // this exception to your version of the library, but you are not
|
|---|
| 33 | // obligated to do so. If you do not wish to do so, delete this
|
|---|
| 34 | // exception statement from your version.
|
|---|
| 35 |
|
|---|
| 36 | using System;
|
|---|
| 37 |
|
|---|
| 38 | #if !NETCF_1_0 && !NETCF_2_0
|
|---|
| 39 | using System.Runtime.Serialization;
|
|---|
| 40 | #endif
|
|---|
| 41 |
|
|---|
| 42 | namespace ICSharpCode.SharpZipLib
|
|---|
| 43 | {
|
|---|
| 44 | /// <summary>
|
|---|
| 45 | /// SharpZipBaseException is the base exception class for the SharpZipLibrary.
|
|---|
| 46 | /// All library exceptions are derived from this.
|
|---|
| 47 | /// </summary>
|
|---|
| 48 | /// <remarks>NOTE: Not all exceptions thrown will be derived from this class.
|
|---|
| 49 | /// A variety of other exceptions are possible for example <see cref="ArgumentNullException"></see></remarks>
|
|---|
| 50 | #if !NETCF_1_0 && !NETCF_2_0
|
|---|
| 51 | [Serializable]
|
|---|
| 52 | #endif
|
|---|
| 53 | public class SharpZipBaseException : ApplicationException
|
|---|
| 54 | {
|
|---|
| 55 | #if !NETCF_1_0 && !NETCF_2_0
|
|---|
| 56 | /// <summary>
|
|---|
| 57 | /// Deserialization constructor
|
|---|
| 58 | /// </summary>
|
|---|
| 59 | /// <param name="info"><see cref="System.Runtime.Serialization.SerializationInfo"/> for this constructor</param>
|
|---|
| 60 | /// <param name="context"><see cref="StreamingContext"/> for this constructor</param>
|
|---|
| 61 | protected SharpZipBaseException(SerializationInfo info, StreamingContext context )
|
|---|
| 62 | : base( info, context )
|
|---|
| 63 | {
|
|---|
| 64 | }
|
|---|
| 65 | #endif
|
|---|
| 66 |
|
|---|
| 67 | /// <summary>
|
|---|
| 68 | /// Initializes a new instance of the SharpZipBaseException class.
|
|---|
| 69 | /// </summary>
|
|---|
| 70 | public SharpZipBaseException()
|
|---|
| 71 | {
|
|---|
| 72 | }
|
|---|
| 73 |
|
|---|
| 74 | /// <summary>
|
|---|
| 75 | /// Initializes a new instance of the SharpZipBaseException class with a specified error message.
|
|---|
| 76 | /// </summary>
|
|---|
| 77 | /// <param name="message">A message describing the exception.</param>
|
|---|
| 78 | public SharpZipBaseException(string message)
|
|---|
| 79 | : base(message)
|
|---|
| 80 | {
|
|---|
| 81 | }
|
|---|
| 82 |
|
|---|
| 83 | /// <summary>
|
|---|
| 84 | /// Initializes a new instance of the SharpZipBaseException class with a specified
|
|---|
| 85 | /// error message and a reference to the inner exception that is the cause of this exception.
|
|---|
| 86 | /// </summary>
|
|---|
| 87 | /// <param name="message">A message describing the exception.</param>
|
|---|
| 88 | /// <param name="innerException">The inner exception</param>
|
|---|
| 89 | public SharpZipBaseException(string message, Exception innerException)
|
|---|
| 90 | : base(message, innerException)
|
|---|
| 91 | {
|
|---|
| 92 | }
|
|---|
| 93 | }
|
|---|
| 94 | }
|
|---|