1 22 23 package cypress; 24 25 import java.io.*; 26 27 public class CssParseException extends IOException 28 { 29 public CssParseException( String msg, int line, int column ) 30 { 31 super( msg ); 32 } 33 34 public CssParseException( String msg ) 35 { 36 super( msg ); 37 } 38 39 public CssParseException( Exception ex ) 40 { 41 super( ex.toString() ); 42 } 43 } 44 | Popular Tags |