<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">public class MyException extends OurException {
    
    /** Constructor: an instance with message m */
    public MyException(String m) {
        super(m);
    }
    
    /** Constructor: an instance with no message */
    public MyException() {
        super();
    }
}
</pre></body></html>