sorry forget these two Exceptions
[mir.git] / source / mir / storage / StorageObjectExc.java
1 package mir.storage;
2
3 import multex.Exc;
4
5 /**
6  * @author idefix
7  */
8 public class StorageObjectExc extends Exc {
9   public StorageObjectExc(){
10     super("Something gone wrong");
11   }
12
13   public StorageObjectExc(String msg){
14     super(msg);
15   }
16
17 }