blob: f08636edeacc28ec067f153114ac41599126fb39 [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 path is not found.
7 */
8public class PathNotFoundException extends IntentException {
9 private static final long serialVersionUID = -2087045731049914733L;
10
11 public PathNotFoundException() {
12 super();
13 }
14
15 public PathNotFoundException(String message) {
16 super(message);
17 }
18
19 public PathNotFoundException(String message, Throwable cause) {
20 super(message, cause);
21 }
22}