From 767d7545d631936ddac6b975a22d947a93270206 Mon Sep 17 00:00:00 2001 From: Daniel Vogel <daniel.vogel@mni.thm.de> Date: Thu, 29 Jan 2015 02:23:05 +0100 Subject: [PATCH] Added new Exception type --- .../arsnova/exceptions/RequestEntityTooLargeException.java | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 src/main/java/de/thm/arsnova/exceptions/RequestEntityTooLargeException.java diff --git a/src/main/java/de/thm/arsnova/exceptions/RequestEntityTooLargeException.java b/src/main/java/de/thm/arsnova/exceptions/RequestEntityTooLargeException.java new file mode 100644 index 00000000..a8a7f300 --- /dev/null +++ b/src/main/java/de/thm/arsnova/exceptions/RequestEntityTooLargeException.java @@ -0,0 +1,5 @@ +package de.thm.arsnova.exceptions; + +public class RequestEntityTooLargeException extends RuntimeException { + private static final long serialVersionUID = 1L; +} -- GitLab