diff -r ed84c8bdd87b -r ca54040b4409 src/org/sonews/storage/StorageBackendException.java --- a/src/org/sonews/storage/StorageBackendException.java Sun Aug 29 17:28:58 2010 +0200 +++ b/src/org/sonews/storage/StorageBackendException.java Sun Oct 30 22:13:32 2011 +0100 @@ -19,21 +19,20 @@ package org.sonews.storage; /** - * + * Exception caused by the storage backend. * @author Christian Lins * @since sonews/1.0 */ public class StorageBackendException extends Exception { - public StorageBackendException(Throwable cause) - { - super(cause); - } + public StorageBackendException(Throwable cause) + { + super(cause); + } - public StorageBackendException(String msg) - { - super(msg); - } - + public StorageBackendException(String msg) + { + super(msg); + } }