00001 /* 00002 * IllegalType.java 00003 * 00004 * Created on January 12, 2009, 3:42 PM 00005 * 00006 * Copyright 2009 Online Nederland Breedband B.V. 00007 * See the COPYRIGHT file for redistribution and use restrictions. 00008 * Authors: Guillermo Christen <guillermo.christen@is.online.nl> 00009 */ 00010 package dochelper.exceptions; 00011 00018 public class IllegalParamterTypeException extends Exception { 00019 00020 private String _paramName; 00021 00025 public IllegalParamterTypeException(String paramName) { 00026 _paramName = paramName; 00027 } 00028 00033 public String getParamName() { 00034 return _paramName; 00035 } 00036 }