--- a/server/src/main/java/org/iri_research/renkan/RenkanRuntimeException.java Mon Oct 21 13:58:20 2013 +0200
+++ b/server/src/main/java/org/iri_research/renkan/RenkanRuntimeException.java Mon Oct 21 15:00:17 2013 +0200
@@ -2,25 +2,24 @@
public class RenkanRuntimeException extends RuntimeException {
-
- /**
+ /**
*
*/
- private static final long serialVersionUID = 736470650035855769L;
+ private static final long serialVersionUID = 736470650035855769L;
- public RenkanRuntimeException() {
- }
+ public RenkanRuntimeException() {
+ }
- public RenkanRuntimeException(String message) {
- super(message);
- }
+ public RenkanRuntimeException(String message) {
+ super(message);
+ }
- public RenkanRuntimeException(Throwable exc) {
- super(exc);
- }
+ public RenkanRuntimeException(Throwable exc) {
+ super(exc);
+ }
- public RenkanRuntimeException(String message, Throwable exc) {
- super(message, exc);
- }
+ public RenkanRuntimeException(String message, Throwable exc) {
+ super(message, exc);
+ }
}