noticecommentexistsexception.java

来自「学习dwr+struts2+spring进行开发的好例子」· Java 代码 · 共 22 行

JAVA
22
字号
package com.szhelper.lotteryWeb.exception;


/**
 * An exception that is thrown by classes wanting to trap unique 
 * constraint violations.  This is used to wrap Spring's 
 * DataIntegrityViolationException so it's checked in the web layer.
 *
 * @author <a href="mailto:fx_mike@hotmail.com">Mike Fang</a>
 */
public class NoticeCommentExistsException extends Exception {
    private static final long serialVersionUID = 4050482305178810162L;

    /**
     * Constructor for UserExistsException.
     *
     * @param message exception message
     */
    public NoticeCommentExistsException(final String message) {
        super(message);
    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?