UnhandledParser.java

package com.ziesemer.utils.classParser;

/**
 * @author Mark A. Ziesemer
 * 	<a href="http://www.ziesemer.com.">&lt;www.ziesemer.com&gt;</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);
	}
	
}