blob: 20ccc86d478d0869f71251025960bda89060fd50 [file] [log] [blame]
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001package net.floodlightcontroller.core.module;
2
3public class FloodlightModuleException extends Exception {
4 private static final long serialVersionUID = 1L;
5
6 public FloodlightModuleException(String error) {
7 super(error);
8 }
9}