1 32 33 package scioworks.imap.presentation; 34 35 import com.lutris.appserver.server.httpPresentation.HttpPresentationException; 36 import com.lutris.util.ChainedException; 37 38 public class KMSPresentationException extends HttpPresentationException { 39 40 public KMSPresentationException(String msg) { 41 super(msg); 42 } 43 44 public KMSPresentationException(String msg, Exception e) { 45 super(msg, e); 46 } 47 } 48 | Popular Tags |