From: David ‘Bombe’ Roden Date: Tue, 12 Apr 2011 07:01:23 +0000 (+0200) Subject: Add another exception type. X-Git-Tag: beta-freefall-0.6.2-1~44 X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=commitdiff_plain;h=62f9f47461143e1acaf34db3037b38a5749c6b36 Add another exception type. --- diff --git a/src/main/java/net/pterodactylus/sone/core/SoneException.java b/src/main/java/net/pterodactylus/sone/core/SoneException.java index 74f257d..efe28f5 100644 --- a/src/main/java/net/pterodactylus/sone/core/SoneException.java +++ b/src/main/java/net/pterodactylus/sone/core/SoneException.java @@ -37,6 +37,9 @@ public class SoneException extends Exception { /** An invalid URI was specified. */ INVALID_URI, + /** An insert failed. */ + INSERT_FAILED, + } /** The type of the exception. */