1 17 18 19 20 package org.apache.lenya.cms.cocoon.uriparameterizer; 21 22 public class URIParameterizerException extends Exception { 23 24 27 public URIParameterizerException() { 28 super(); 29 } 30 31 35 public URIParameterizerException(String message) { 36 super(message); 37 } 38 39 44 public URIParameterizerException(String message, Throwable cause) { 45 super(message, cause); 46 } 47 48 52 public URIParameterizerException(Throwable cause) { 53 super(cause); 54 } 55 56 } 57 | Popular Tags |