2 * Sone - 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. */
40 /** An insert failed. */
45 /** The type of the exception. */
46 private final Type type;
49 * Creates a new Sone exception.
52 * The type of the occured error
54 public SoneException(Type type) {
59 * Creates a new Sone exception.
62 * The type of the occured error
64 * The message of the exception
66 public SoneException(Type type, String message) {
72 * Creates a new Sone exception.
75 * The type of the occured error
77 * The cause of the exception
79 public SoneException(Type type, Throwable cause) {
85 * Creates a new Sone exception.
88 * The type of the occured error
90 * The message of the exception
92 * The cause of the exception
94 public SoneException(Type type, String message, Throwable cause) {
95 super(message, cause);
104 * Returns the type of this exception.
106 * @return The type of this exception (may be {@code null})
108 public Type getType() {