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