001package edu.pdx.cs.joy;
002
003public class UncaughtExceptionInMain extends RuntimeException {
004  UncaughtExceptionInMain(Throwable cause) {
005    super("Main methods should not throw exceptions", cause);
006
007  }
008}