blob: 029f028b0aff87d534ddb5f6f5377feebc310ee6 [file] [log] [blame]
tom9ccd7812014-08-25 22:43:19 -07001package org.onlab.onos.of.controller.impl.registry;
alshabib1f44e8e2014-08-14 15:19:57 -07002
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}