public class thrower { public static void main (String[] args) throws Exception { // throw new Throwable("Mein Throwable"); // throw new Error("Mein Error"); throw new Exception("Meine Exception"); // throw new RuntimeException("Meine Exception"); } }