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