1 4 package com.opensymphony.webwork.portlet.sitemesh; 5 6 10 public class InfrastructureException extends RuntimeException { 11 12 public InfrastructureException(Throwable cause) { 13 super(cause); 14 } 15 16 public InfrastructureException(String msg) { 17 super(msg); 18 } 19 20 public InfrastructureException(String msg, Throwable cause) { 21 super(msg, cause); 22 } 23 } | Popular Tags |