1 7 package org.enhydra.pim.presentation; 8 9 import com.lutris.appserver.server.httpPresentation.HttpPresentationException; 10 11 16 public class EnhydraPimPresentationException extends HttpPresentationException { 17 18 19 22 public EnhydraPimPresentationException(String message) { 23 super(message); 24 } 26 27 30 public EnhydraPimPresentationException(Throwable cause) { 31 super(cause); 32 } 34 35 39 public EnhydraPimPresentationException(String message, Throwable cause) { 40 super(message, cause); 41 } 43 44 } 45 | Popular Tags |