blob: 8519a3c9baf74c45bba42e89106f455ccbda2387 [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
Ray Milkey269ffb92014-04-03 14:43:30 -07006 public FloodlightModuleException(String error) {
7 super(error);
8 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08009}