blob: 06f5932cfb59ada899123cf219414f63b98e12a9 [file] [log] [blame]
tom0eb04ca2014-08-25 14:34:51 -07001package net.onrc.onos.of.ctl.registry;
2
3public class RegistryException extends Exception {
4
5 private static final long serialVersionUID = -8276300722010217913L;
6
7 public RegistryException(String message) {
8 super(message);
9 }
10
11 public RegistryException(String message, Throwable cause) {
12 super(message, cause);
13 }
14
15}