blob: 3b17cf1f416eb0caa790554b07dded3d866e6780 [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 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}