]>
Commit | Line | Data |
---|---|---|
0763e16d JW |
1 | /* -*-mode:java; c-basic-offset:2; -*- */\r |
2 | /*\r | |
3 | Copyright (c) 2000,2001,2002,2003 ymnk, JCraft,Inc. All rights reserved.\r | |
4 | \r | |
5 | Redistribution and use in source and binary forms, with or without\r | |
6 | modification, 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 | |
18 | THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,\r | |
19 | INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND\r | |
20 | FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JCRAFT,\r | |
21 | INC. OR ANY CONTRIBUTORS TO THIS SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT,\r | |
22 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\r | |
23 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,\r | |
24 | OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\r | |
25 | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\r | |
26 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\r | |
27 | EVEN 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 | |
35 | package com.jcraft.jzlib;\r | |
36 | \r | |
37 | public 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 |