01: package de.regnis.q.sequence.core;
02:
03: /**
04: * @author Marc Strapetz
05: */
06: public class QSequenceException extends Exception {
07:
08: // Setup ==================================================================
09:
10: public QSequenceException() {
11: }
12:
13: public QSequenceException(Throwable cause) {
14: super(cause);
15: }
16: }
|