You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ApplicationException.java 210B

123456789
  1. package com.myapp;
  2. public class ApplicationException extends Exception {
  3. private static final long serialVersionUID = 1L;
  4. public ApplicationException(String message) {
  5. super(message);
  6. }
  7. }