blob: 1c8549ff5d536320f5827d4ba4009d9d3ae19aee [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 removal failed.
7 */
8public class IntentRemovalException extends IntentException {
9 private static final long serialVersionUID = -5259226322037891951L;
10
11 public IntentRemovalException() {
12 super();
13 }
14
15 public IntentRemovalException(String message) {
16 super(message);
17 }
18
19 public IntentRemovalException(String message, Throwable cause) {
20 super(message, cause);
21 }
22}