Package sample.rmi.server.exception

Examples of sample.rmi.server.exception.Exception3


    public String method2(String param1) throws Exception2, Exception1 {
        throw new Exception2("Test Exception2");
    }

    public int method3(int param1) throws Exception3, Exception2, Exception1 {
        throw new Exception3("Test Exception3");
    }
View Full Code Here

TOP

Related Classes of sample.rmi.server.exception.Exception3

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.