Package play.exceptions

Examples of 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");
    }
View Full Code Here

TOP

Related Classes of play.exceptions.BinderException

Copyright © 2018 www.massapicom. 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.