Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: com/sixlegs/image/png/PngException.java


1   // Copyright (C) 1998, 1999, 2001 Chris Nokleberg
2   // Please see included LICENSE.TXT
3   
4   package com.sixlegs.image.png;
5   
6   import java.io.IOException;
7   
8   class PngException
9   extends IOException
10  {
11      String msg = null;
12  
13      PngException()
14      {
15      }
16  
17      PngException(String s)
18      {
19          msg = s;
20      }
21  
22      public String toString()
23      {
24          return msg;
25      }
26  }
27