@Global
public class ExceptionThrowingBinder implements TypeBinder<ExceptionThrowingSubject> {
public Object bind(String name, Annotation[] annotations, String value, Class actualClass, Type genericType) {
throw new BinderException("Could not create ExceptionThrowingSubject");
}