import java.lang.RuntimeException;
import java.lang.Exception;

//class AnotherException extends RuntimeException {


class AnotherException extends Exception {

	public AnotherException(String mssg) {
		super(mssg);		
	}

}
