1 23 24 package com.sun.enterprise.admin.comm; 25 26 import com.sun.enterprise.admin.common.exception.AFRuntimeException; 27 28 31 public class AFConnectionException extends AFRuntimeException 32 { 33 35 public AFConnectionException() 36 { 37 } 38 39 43 public AFConnectionException(String message) 44 { 45 super(message); 46 } 47 48 50 public String getLocalizedMessage() 51 { 52 String i18nMsg = getMessage(); 53 return i18nMsg; 54 } 55 } | Popular Tags |