1 6 7 package javax.emb; 8 9 19 public class LinkTranslationException extends MediaException 20 { 21 24 public LinkTranslationException() 25 { 26 super(); 27 } 28 29 32 public LinkTranslationException(String message) 33 { 34 super(message); 35 } 36 37 40 public LinkTranslationException(String message, Throwable cause) 41 { 42 super(message, cause); 43 } 44 45 48 public LinkTranslationException(Throwable cause) 49 { 50 super(cause); 51 } 52 } | Popular Tags |