1 16 package com.blandware.atleap.webapp.exception; 17 18 25 public class MenuUtilException extends Exception { 26 27 30 public MenuUtilException() { 31 } 32 33 34 39 public MenuUtilException(String msg) { 40 super(msg); 41 } 42 43 48 public MenuUtilException(Exception e) { 49 super(e); 50 } 51 52 55 public String toString() { 56 return "com.blandware.atleap.webapp.exception.MenuUtilException"; 57 } 58 59 } | Popular Tags |