Package utils

Source Code of utils.ExceptionThrowingBinder

package utils;

import java.lang.reflect.*;
import java.lang.annotation.*;
import play.data.binding.*;
import play.exceptions.BinderException;

@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");
    }

}
TOP

Related Classes of utils.ExceptionThrowingBinder

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.