1 28 29 package com.caucho.relaxng; 30 31 import com.caucho.util.CompileException; 32 33 36 public class RelaxException extends Exception implements CompileException { 37 public RelaxException() 38 { 39 } 40 41 public RelaxException(String message) 42 { 43 super(message); 44 } 45 46 public RelaxException(String message, Throwable e) 47 { 48 super(message, e); 49 } 50 51 public RelaxException(Throwable e) 52 { 53 super(e); 54 } 55 } 56 | Popular Tags |