Package org.jboss.as.quickstarts.ear.client

Examples of org.jboss.as.quickstarts.ear.client.GreeterException


    }
   
    public String sayHello(String name) throws GreeterException {
       
        if(name == null || name.equals(""))
            throw new GreeterException("name cannot be null or empty");
       
        return "Hello " + name;       
    }
View Full Code Here


    }
   
    public String sayHello(String name) throws GreeterException {
       
        if(name == null || name.equals(""))
            throw new GreeterException("name cannot be null or empty");
       
        return "Hello " + name;       
    }
View Full Code Here

TOP

Related Classes of org.jboss.as.quickstarts.ear.client.GreeterException

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.