1 /** 2 * Copyright By Grandsoft Company Limited. 3 * 2012-8-15 上午09:55:26 4 */ 5 package gboat2.web.service; 6 7 8 /** 9 * 用户接口异常 10 * @author lysming 11 * @since jdk1.6 12 * @date 2012-8-15 13 * 14 */ 15 16 public class UserException extends Exception { 17 public UserException(){ 18 19 } 20 21 public UserException(String message){ 22 super(message); 23 } 24 25 public UserException(Exception e){ 26 super(e); 27 } 28 }