Replace error return object with Kotlin version
[Sone.git] / src / main / java / net / pterodactylus / sone / web / ajax / JsonErrorReturnObject.java
diff --git a/src/main/java/net/pterodactylus/sone/web/ajax/JsonErrorReturnObject.java b/src/main/java/net/pterodactylus/sone/web/ajax/JsonErrorReturnObject.java
deleted file mode 100644 (file)
index 4612f0c..0000000
+++ /dev/null
@@ -1,46 +0,0 @@
-/*
- * © 2013 xplosion interactive
- */
-
-package net.pterodactylus.sone.web.ajax;
-
-import com.fasterxml.jackson.annotation.JsonProperty;
-import com.google.common.annotations.VisibleForTesting;
-
-/**
- * {@link JsonReturnObject} that signals an error has occured.
- *
- * @author <a href="mailto:d.roden@xplosion.de">David Roden</a>
- */
-public class JsonErrorReturnObject extends JsonReturnObject {
-
-       /** The error that has occured. */
-       @JsonProperty
-       private final String error;
-
-       /**
-        * Creates a new error JSON return object.
-        *
-        * @param error
-        *              The error that occured
-        */
-       public JsonErrorReturnObject(String error) {
-               super(false);
-               this.error = error;
-       }
-
-       //
-       // ACCESSORS
-       //
-
-       /**
-        * Returns the error that occured.
-        *
-        * @return The error that occured
-        */
-       @VisibleForTesting
-       public String getError() {
-               return error;
-       }
-
-}