2 * FreenetSone - SoneException.java - Copyright © 2010 David Roden
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 3 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 package net.pterodactylus.sone.core;
23 * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
25 public class SoneException extends Exception {
28 * Defines the different error. This is an enum instead of custom exceptions
29 * to keep the number of exceptions down. Specialized exceptions might still
32 public static enum Type {
34 /** An invalid Sone name was specified. */
37 /** An invalid URI was specified. */
42 /** The type of the exception. */
43 private final Type type;
46 * Creates a new Sone exception.
49 * The type of the occured error
51 public SoneException(Type type) {
56 * Creates a new Sone exception.
59 * The type of the occured error
61 * The message of the exception
63 public SoneException(Type type, String message) {
69 * Creates a new Sone exception.
72 * The type of the occured error
74 * The cause of the exception
76 public SoneException(Type type, Throwable cause) {
82 * Creates a new Sone exception.
85 * The type of the occured error
87 * The message of the exception
89 * The cause of the exception
91 public SoneException(Type type, String message, Throwable cause) {
92 super(message, cause);
101 * Returns the type of this exception.
103 * @return The type of this exception (may be {@code null})
105 public Type getType() {