1 29 30 package com.caucho.quercus; 31 32 35 public class QuercusException extends RuntimeException { 36 public QuercusException() 37 { 38 } 39 40 public QuercusException(String msg) 41 { 42 super(msg); 43 } 44 45 public QuercusException(Throwable cause) 46 { 47 super(cause); 48 } 49 50 public QuercusException(String msg, Throwable cause) 51 { 52 super(msg, cause); 53 } 54 } 55 | Popular Tags |