1 16 package org.apache.cocoon.sitemap; 17 18 import org.apache.avalon.framework.CascadingException; 19 20 30 public class PatternException extends CascadingException { 31 32 35 public PatternException(String message) { 36 super(message, null); 37 } 38 39 44 public PatternException(Exception ex) { 45 super(ex.getMessage(), ex); 46 } 47 48 52 public PatternException(String message, Throwable t) { 53 super(message, t); 54 } 55 } 56 | Popular Tags |