01: package org.claros.intouch.common.exceptions;
02:
03: /**
04: * @author Umut Gokbayrak
05: */
06: public class UnableToImportException extends Exception {
07: /**
08: *
09: */
10: private static final long serialVersionUID = 6534417248111663148L;
11:
12: /**
13: *
14: */
15: public UnableToImportException() {
16: super ();
17: }
18:
19: /**
20: * @param arg0
21: */
22: public UnableToImportException(String arg0) {
23: super(arg0);
24: }
25:
26: }
|