blob: 23e7c7238c4e7b6abbdd8df5a403bfef8dc7ae6c [file] [log] [blame]
Sho SHIMIZUf7b693e2014-08-15 16:17:13 -07001package net.onrc.onos.core.newintent;
2
3import net.onrc.onos.api.newintent.IntentException;
4
5/**
6 * An exception thrown when a intent compilation fails.
7 */
8public class IntentCompilationException extends IntentException {
9 private static final long serialVersionUID = 235237603018210810L;
10
11 public IntentCompilationException() {
12 super();
13 }
14
15 public IntentCompilationException(String message) {
16 super(message);
17 }
18
19 public IntentCompilationException(String message, Throwable cause) {
20 super(message, cause);
21 }
22}