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