1 23 24 package com.sun.enterprise.admin.common.exception; 25 26 30 public class AFRuntimeException extends RuntimeException  31 { 32 34 public AFRuntimeException() 35 { 36 } 37 38 42 public AFRuntimeException(String message) 43 { 44 super(message); 45 } 46 47 public AFRuntimeException(Throwable throwable) { 48 super(throwable); 49 } 50 51 public AFRuntimeException(String message, Throwable throwable) { 52 super(message, throwable); 53 } 54 55 57 public String getLocalizedMessage() 58 { 59 String i18nMsg = getMessage(); 60 return i18nMsg; 61 } 62 63 } 64 | Popular Tags |