]> Joshua Wise's Git repositories - dumload.git/blame - src/com/jcraft/jzlib/ZStreamException.java
Initial commit.
[dumload.git] / src / com / jcraft / jzlib / ZStreamException.java
CommitLineData
0763e16d
JW
1/* -*-mode:java; c-basic-offset:2; -*- */\r
2/*\r
3Copyright (c) 2000,2001,2002,2003 ymnk, JCraft,Inc. All rights reserved.\r
4\r
5Redistribution and use in source and binary forms, with or without\r
6modification, are permitted provided that the following conditions are met:\r
7\r
8 1. Redistributions of source code must retain the above copyright notice,\r
9 this list of conditions and the following disclaimer.\r
10\r
11 2. Redistributions in binary form must reproduce the above copyright \r
12 notice, this list of conditions and the following disclaimer in \r
13 the documentation and/or other materials provided with the distribution.\r
14\r
15 3. The names of the authors may not be used to endorse or promote products\r
16 derived from this software without specific prior written permission.\r
17\r
18THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,\r
19INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND\r
20FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JCRAFT,\r
21INC. OR ANY CONTRIBUTORS TO THIS SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT,\r
22INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\r
23LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,\r
24OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\r
25LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\r
26NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\r
27EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\r
28 */\r
29/*\r
30 * This program is based on zlib-1.1.3, so all credit should go authors\r
31 * Jean-loup Gailly(jloup@gzip.org) and Mark Adler(madler@alumni.caltech.edu)\r
32 * and contributors of zlib.\r
33 */\r
34\r
35package com.jcraft.jzlib;\r
36\r
37public class ZStreamException extends java.io.IOException {\r
38 public ZStreamException() {\r
39 super();\r
40 }\r
41 public ZStreamException(String s) {\r
42 super(s);\r
43 }\r
44}\r
This page took 0.026135 seconds and 4 git commands to generate.