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