资源简介

MySQL JDBC src 驱动包和源码

资源截图

代码片段和文件信息

/*
 Copyright  2002-2004 MySQL AB 2008 Sun Microsystems

 This program is free software; you can redistribute it and/or modify
 it under the terms of version 2 of the GNU General Public License as 
 published by the Free Software Foundation.

 There are special exceptions to the terms and conditions of the GPL 
 as it is applied to this software. View the full text of the 
 exception in file EXCEPTIONS-CONNECTOR-J in the directory of this 
 software distribution.

 This program 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.  See the
 GNU General Public License for more details.

 You should have received a copy of the GNU General Public License
 along with this program; if not write to the Free Software
 Foundation Inc. 59 Temple Place Suite 330 Boston MA  02111-1307  USA



 */
package com.mysql.jdbc;

/**
 * Assertions for empty code paths that should never be executed.
 * 
 * @author Mark Matthews
 * 
 * @version $Id: AssertionFailedException.javav 1.1.2.1 2005/05/13 18:58:37
 *          mmatthews Exp $
 */
public class AssertionFailedException extends RuntimeException {
// ~ Constructors
// -----------------------------------------------------------

/**
 * Convenience method.
 * 
 * @param ex
 *            the exception that should never have been thrown.
 * @throws AssertionFailedException
 *             for the exception ex.
 */
public static void shouldNotHappen(Exception ex)
throws AssertionFailedException {
throw new AssertionFailedException(ex);
}

// ~ Methods
// ----------------------------------------------------------------

/**
 * Creates an AssertionFailedException for the given exception that should
 * never have been thrown.
 * 
 * @param ex
 *            the exception that should never have been thrown.
 */
public AssertionFailedException(Exception ex) {
super(Messages.getString(“AssertionFailedException.0“) + ex.toString() //$NON-NLS-1$
+ Messages.getString(“AssertionFailedException.1“)); //$NON-NLS-1$
}
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       1349  2008-10-21 04:02  mysql-connector-java-5.1.7\README

     文件     383087  2008-10-21 04:02  mysql-connector-java-5.1.7\docs\README

     文件      11358  2008-10-21 04:02  mysql-connector-java-5.1.7\src\lib\Commons-Logging-LICENSE.txt

     文件      26430  2008-10-21 04:02  mysql-connector-java-5.1.7\src\lib\jboss-lgpl.txt

     文件        177  2008-10-21 04:02  mysql-connector-java-5.1.7\src\doc\sources\placeholder.txt

     文件       1392  2009-07-13 10:39  mysql-connector-java-5.1.7\README.txt

     文件     391184  2008-10-21 04:02  mysql-connector-java-5.1.7\docs\README.txt

     文件        500  2005-12-23 17:10  mysql-connector-java-5.1.7\www.ziyuan8.com资源吧.txt

     文件       1308  2004-07-29 08:34  mysql-connector-java-5.1.7\资源吧下载说明.htm

     文件     633955  2008-10-21 04:02  mysql-connector-java-5.1.7\docs\connector-j.html

     文件      15958  2008-10-21 04:02  mysql-connector-java-5.1.7\src\lib\LICENSE-AspectJ.html

     目录          0  2008-10-21 04:02  mysql-connector-java-5.1.7\src\com\mysql\jdbc\integration\c3p0

     文件      26430  2008-10-21 04:02  mysql-connector-java-5.1.7\src\lib\c3p0-LICENSE

     文件     171518  2008-10-21 04:02  mysql-connector-java-5.1.7\CHANGES

     目录          0  2008-10-21 04:02  mysql-connector-java-5.1.7\src\com\mysql\jdbc\configs

     文件      19451  2008-10-21 04:02  mysql-connector-java-5.1.7\COPYING

     目录          0  2008-10-21 04:02  mysql-connector-java-5.1.7\src\doc

     目录          0  2008-10-21 04:02  mysql-connector-java-5.1.7\docs

     文件       5256  2008-10-21 04:02  mysql-connector-java-5.1.7\EXCEPTIONS-CONNECTOR-J

     目录          0  2008-10-21 04:02  mysql-connector-java-5.1.7\src\com\mysql\jdbc\interceptors

     目录          0  2008-10-21 04:02  mysql-connector-java-5.1.7\src\com\mysql\jdbc\integration\jboss

     目录          0  2008-10-21 04:02  mysql-connector-java-5.1.7\src\com\mysql\jdbc\integration

     目录          0  2008-10-21 04:02  mysql-connector-java-5.1.7\src\com\mysql\jdbc\jdbc2

     目录          0  2008-10-21 04:02  mysql-connector-java-5.1.7\src\testsuite\simple\jdbc4

     目录          0  2008-10-21 04:02  mysql-connector-java-5.1.7\src\lib

     目录          0  2008-10-21 04:02  mysql-connector-java-5.1.7\src\com\mysql\jdbc\log

     目录          0  2008-10-21 04:02  mysql-connector-java-5.1.7\src\org\gjt\mm\mysql

     目录          0  2008-10-21 04:02  mysql-connector-java-5.1.7\src\org\gjt\mm

     目录          0  2008-10-21 04:02  mysql-connector-java-5.1.7\src\org\gjt

     目录          0  2008-10-21 04:02  mysql-connector-java-5.1.7\src\com\mysql\jdbc\jdbc2\optional

............此处省略266个文件信息

评论

共有 条评论