blob: 5ee4ee4ae3dd7f89880d75bfa0828a60b2250743 [file] [log] [blame]
Brian O'Connor66630c82014-10-02 21:08:19 -07001package org.onlab.onos.net.intent.impl;
2
3import org.onlab.onos.net.intent.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}