blob: e4232fc42e411626609af4cec1bd01f317ed2e92 [file] [log] [blame]
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001package net.floodlightcontroller.core.module;
2
3public class FloodlightModuleException extends Exception {
Ray Milkey269ffb92014-04-03 14:43:30 -07004 private static final long serialVersionUID = 1L;
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08005
Jonathan Hart12a26aa2014-06-04 14:33:09 -07006 public FloodlightModuleException(String message) {
7 super(message);
8 }
9
10 public FloodlightModuleException(String message, Throwable cause) {
11 super(message, cause);
Ray Milkey269ffb92014-04-03 14:43:30 -070012 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -080013}