1 25 package org.ofbiz.webapp.control; 26 27 34 public class RequestHandlerException extends org.ofbiz.base.util.GeneralException { 35 36 public RequestHandlerException(String str, Throwable t) { 37 super(str, t); 38 } 39 40 public RequestHandlerException(String str) { 41 super(str); 42 } 43 44 public RequestHandlerException() { 45 super(); 46 } 47 } 48 49 | Popular Tags |