/* * 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); } }