⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 daoduplicatekeyexception.java

📁 这是一个java编写的程序
💻 JAVA
字号:
/** * Example Mapper Application * by: Marty Phelan * * This example is free software; you can redistribute it and/or * modify it as you wish.  It is released to the public domain. * * This example is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. */package com.taursys.examples.library;import java.sql.SQLException;/** * An exception arising from a duplicate key in the database. * @author Marty Phelan * @version 1.0 */public class DAODuplicateKeyException extends DAOSQLException {  public static final int REASON_OFFSET                     = 400;  public static final int DUPLICATE_KEY                     = 0 + REASON_OFFSET;  private static final String[] messages = new String[] {    "SQLException - Duplicate Key occurred during insert",  };  // ************************************************************************  //                       Static Class Methods  // ************************************************************************  /**   * Returns String for given reason code else String for REASON_INVALID_REASON_CODE.   */  public static String getReasonMessage(int reason) {    if (reason >=  + REASON_OFFSET && reason < messages.length + REASON_OFFSET)      return messages[reason - REASON_OFFSET];    else      return getInvalidMessage();  }  // ************************************************************************  //                        Public Constructors  // ************************************************************************  /**   * Creates a DAOSQLException with a reason code (which will display its message).   */  public DAODuplicateKeyException(int reason, String operationName, String sql,      SQLException ex) {    super(reason, operationName, sql, ex);  }}

⌨️ 快捷键说明

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