Statistics
| Revision:

root / trunk / frameworks / _fwAndami / src / com / iver / andami / preferences / StoreException.java @ 9211

History | View | Annotate | Download (494 Bytes)

1 6660 caballero
package com.iver.andami.preferences;
2
3
public class StoreException extends Exception {
4
5
        public StoreException() {
6
                super();
7
                // TODO Auto-generated constructor stub
8
        }
9
10
        public StoreException(String arg0, Throwable arg1) {
11
                super(arg0, arg1);
12
                // TODO Auto-generated constructor stub
13
        }
14
15
        public StoreException(String arg0) {
16
                super(arg0);
17
                // TODO Auto-generated constructor stub
18
        }
19
20
        public StoreException(Throwable arg0) {
21
                super(arg0);
22
                // TODO Auto-generated constructor stub
23
        }
24
}