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