1 2 24 25 26 27 28 29 package com.lutris.appserver.server.httpPresentation; 30 31 import com.lutris.util.ChainedException; 32 33 34 38 public class HttpPresentationException extends ChainedException { 39 40 46 public HttpPresentationException(String msg) { 47 super(msg); 48 } 49 50 59 public HttpPresentationException(String msg, 60 Throwable cause) { 61 super(msg, cause); 62 } 63 64 72 public HttpPresentationException(Throwable cause) { 73 super(cause); 74 } 75 } 76 | Popular Tags |