这是java Doc 中对这个异常的描述
Thrown when the "verifier" detects that a class file, though well formed, contains some sort of internal inconsistency or security problem
具体还得看代码

解决方案 »

  1.   

    代码如下:package jp.co.nec_lease.imart.model.creditanxiety.data.test;
    import junit.framework.*;
    import jp.co.nec_lease.imart.model.creditanxiety.data.*;
    import java.sql.*;
    import jp.co.intra_mart.framework.base.data.*;
    import jp.co.nec_lease.imart.model.creditanxiety.object.*;public class TestCreditAnxietyLogDBDAO_fetchWithDetail extends TestCase {
      private CreditAnxietyLogDBDAO creditAnxietyLogDBDAO = null;
     protected void setUp() throws Exception {
        super.setUp();
        /**@todo verify the constructors*/
        creditAnxietyLogDBDAO = new CreditAnxietyLogDBDAO();
      }
      protected void tearDown() throws Exception {
        creditAnxietyLogDBDAO = null;
        super.tearDown();
      }  public void testFetchWithDetail() throws SQLException, DAOException, DataPropertyException, DataConnectException {
        String SearchCreditAnxietyInformation = null;
        CreditAnxietyLog[] expectedReturn = null;
        CreditAnxietyLog[] actualReturn = creditAnxietyLogDBDAO.fetchWithDetail(SearchCreditAnxietyInformation);
        assertEquals(0,0);
        /**@todo fill in the test code*/
      }}
      

  2.   

    creditAnxietyLogDBDAO = new CreditAnxietyLogDBDAO(); //这句出错
      

  3.   

    上面说的对,
    应该是:creditAnxietyLogDBDAO  ddd= new CreditAnxietyLogDBDAO();
      

  4.   

    因为你好象是想实例化creditAnxietyLogDBDAO这个类!