Package org.apache.tuscany.sca.binding.corba.testing.exceptions.CalcPackage

Examples of org.apache.tuscany.sca.binding.corba.testing.exceptions.CalcPackage.NotSupported


        }
    }

    public double divForSmallArgs(double arg1, double arg2) throws DivByZero, NotSupported {
        if (arg1 > 100 || arg2 > 100) {
            NotSupported exception = new NotSupported();
            exception.info = "arg1: " + arg1 + ", arg2: " + arg2;
            throw exception;
        } else {
            return div(arg1, arg2);
        }
View Full Code Here

TOP

Related Classes of org.apache.tuscany.sca.binding.corba.testing.exceptions.CalcPackage.NotSupported

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.