You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
test123/NetworkFailureException.java

36 lines
1.5 KiB

3 weeks ago
/*
* Copyright (c) 2010-2011, The MiCode Open Source Community (www.micode.net)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// 定义在net.micode.notes.gtask.exception包下的自定义异常类继承自RuntimeException
package net.micode.notes.gtask.exception;
public class NetworkFailureException extends Exception {
// serialVersionUID用于序列化保证版本兼容性
private static final long serialVersionUID = 2107610287180234136L;
// 无参构造方法,调用父类的无参构造方法
public NetworkFailureException() {
super();
}
// 带有一个字符串参数的构造方法,调用父类的带有一个字符串参数的构造方法
public NetworkFailureException(String paramString) {
super(paramString);
}
// 带有一个字符串和一个Throwable参数的构造方法调用父类的带有字符串和Throwable参数的构造方法
public NetworkFailureException(String paramString, Throwable paramThrowable) {
super(paramString, paramThrowable);
}
}