Package org.mapstruct.ap.test.exceptions.imports

Examples of org.mapstruct.ap.test.exceptions.imports.TestException1


*/
public class ExceptionTestMapper  {

    public Long toLong(Integer size) throws TestException1, TestException2 {
        if ( size == 1 ) {
            throw new TestException1();
        }
        else if ( size == 2 ) {
            throw new TestException2();
        }
        return new Long(size);
View Full Code Here

TOP

Related Classes of org.mapstruct.ap.test.exceptions.imports.TestException1

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.