1 28 29 package com.caucho.amber; 30 31 34 public class AmberObjectNotFoundException extends AmberRuntimeException { 35 38 public AmberObjectNotFoundException(String message) 39 { 40 super(message); 41 } 42 43 49 public AmberObjectNotFoundException(String message, Throwable e) 50 { 51 super(message, e); 52 } 53 54 60 public AmberObjectNotFoundException(Throwable e) 61 { 62 super(e); 63 } 64 } 65 | Popular Tags |