1 19 20 package com.lutris.airsent.presentation; 21 22 import com.lutris.appserver.server.httpPresentation.HttpPresentationException; 23 import com.lutris.util.ChainedException; 24 25 31 public class AirSentPresentationException extends HttpPresentationException { 32 33 37 public AirSentPresentationException(String msg, Exception ex) { 38 super(msg, ex); 39 } 40 41 } 42 43 | Popular Tags |