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