1 package org.xvsm.internal.exceptions;
2
3 /***
4 * Thrown if an aspect return {@link AspectResult#RESCHEDULE}.
5 *
6 * @author Christian Schreiber, Michael Proestler
7 *
8 */
9 public class AspectRescheduleException extends XCoreException {
10
11 /***
12 * Autogenerated serial version uid.
13 */
14 private static final long serialVersionUID = -3222445231520174781L;
15
16 public AspectRescheduleException() {
17 super();
18 }
19
20 public AspectRescheduleException(String message, Throwable cause) {
21 super(message, cause);
22 }
23
24 public AspectRescheduleException(String message) {
25 super(message);
26 }
27
28 public AspectRescheduleException(Throwable cause) {
29 super(cause);
30 }
31
32 }