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