Write the definition of a class named PanicException that has no associated message (i.e. null).
LANGUAGE: JAVA
CHALLENGE:
Write the definition of a class named PanicException that has no associated message (i.e. null).
SOLUTION:
public class PanicException extends Exception { }
Posted in Java, Learn To Code