X-Git-Url: http://erislabs.net/gitweb/?p=mir.git;a=blobdiff_plain;f=source%2Fmir%2Fstorage%2FStorageObjectException.java;fp=source%2Fmir%2Fstorage%2FStorageObjectException.java;h=6237217753523145d592645a6ff1867604c999ff;hp=0000000000000000000000000000000000000000;hb=5bf2a1fa11c1529a731ab6b4521b8254c1fa100f;hpb=3a661e8f0f659ab5ed2ac0e4d982ac0b398d11f1 diff --git a/source/mir/storage/StorageObjectException.java b/source/mir/storage/StorageObjectException.java new file mode 100755 index 00000000..62372177 --- /dev/null +++ b/source/mir/storage/StorageObjectException.java @@ -0,0 +1,40 @@ +/** + * Exception fuer StorageObject

+ * + * @author RK + * @version 30.6.1999 + * + * + */ + + +package mir.storage; + +import java.lang.*; + + +/** + * Expception Objekt fuer alle Fehler, die in der Speicherzugriffsschicht + * (mir.storage) auftauchen + */ +public class StorageObjectException extends Exception { + + /** + * Leerer Konstruktor + */ + public StorageObjectException () { + super(); + } + + /** + * Konstruktor mit Nachricht + * @param String msg + */ + public StorageObjectException (String msg) { + super(msg); + } +} + + + +