package com.ziesemer.utils.classParser; /** * @author Mark A. Ziesemer * <a href="http://www.ziesemer.com."><www.ziesemer.com></a> */ public class UnhandledParser implements IClassParser{ @Override public Object convert(final Class<?> c, final String str) throws Exception{ throw new ClassParseException("Unhandled type", c, str); } }