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

📄 cmppinit$myerrorhandle.java

📁 短信平台CMPP30 的JAVA程序,(含SQL数据库)
💻 JAVA
字号:
// Decompiled by Jad v1.5.7g. Copyright 2000 Pavel Kouznetsov.
// Jad home page: http://www.geocities.com/SiliconValley/Bridge/8617/jad.html
// Decompiler options: packimports(3) fieldsfirst ansi 
// Source File Name:   CMPPInit.java

package com.cmpp3_0.config;

import java.io.PrintStream;
import org.xml.sax.*;

// Referenced classes of package com.cmpp3_0.config:
//            CMPPInit

class MyErrorHandle
    implements ErrorHandler
{

    public void error(SAXParseException e)
        throws SAXException
    {
        System.out.println("an error was found at line:" + e.getLineNumber() + ",row:" + e.getColumnNumber() + "!");
    }

    public void fatalError(SAXParseException e)
        throws SAXException
    {
        System.out.println("A Fatal Error occured at line:" + e.getLineNumber() + ",row:" + e.getColumnNumber() + "!");
        System.out.println("The CMPPInit is not completed!Please check the xml file!");
    }

    public void warning(SAXParseException e)
        throws SAXException
    {
        System.out.println("A Warning was found when parsing the xml file!");
    }

    public MyErrorHandle()
    {
    }
}

⌨️ 快捷键说明

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