public String getGreetingsException(String input) throws HelloWorldException {
throw new HelloWorldException("Hello " + input);
}
public String getGreetingsAnotherException(String input) throws AnotherHelloWorldException {
throw new AnotherHelloWorldException("Hello " + input);
}