1 /*
2 * AbstractHelloWorld.java
3 *
4 * Created on 9 Май 2006 г., 1:12
5 */
6
7 package org.weda;
8
9 /**
10 *
11 * @author Mikhail Titov
12 */
13 public abstract class AbstractHelloWorld {
14 public abstract String getGreeting();
15 public String getGreeting2(){
16 //throw new RuntimeException("exception from greeting 2");
17 return "hello world2";
18 }
19 }