* @throws CoercionException No installed handler for type
*/
public static CoercionHandler create(Class type) {
CoercionHandler handler = lookup(type);
if (handler == null)
throw new CoercionException
("no installed handler for type: " + type);
return handler;
}