1 7 package com.inversoft.verge.mvc; 8 9 10 import com.inversoft.util.BaseException; 11 12 13 26 public class MVCException extends BaseException { 27 28 29 32 public MVCException() { 33 } 34 35 40 public MVCException(String mesg) { 41 super(mesg); 42 } 43 44 51 public MVCException(String mesg, Throwable cause) { 52 super(mesg, cause); 53 } 54 55 62 public MVCException(Throwable cause) { 63 super(cause); 64 } 65 } 66 | Popular Tags |