01: package com.jofti.exception;
02:
03: /**
04: *
05: * @author xenephon (xenephon@jofti.com)
06: */
07: public class InsufficientSpaceException extends JoftiException {
08:
09: /**
10: *
11: */
12: private static final long serialVersionUID = -8886294809384953834L;
13:
14: /**
15: * Creates a new instance of <code>PropertyNotIndexedException</code> without detail message.
16: */
17: public InsufficientSpaceException() {
18: }
19:
20: /**
21: * Constructs an instance of <code>PropertyNotIndexedException</code> with the specified detail message.
22: * @param msg the detail message.
23: */
24: public InsufficientSpaceException(String msg) {
25: super (msg);
26: }
27:
28: public InsufficientSpaceException(String msg, Throwable error) {
29: super (msg, error);
30: }
31:
32: public InsufficientSpaceException(Throwable error) {
33: super(error);
34: }
35: }
|