Fix for Bug 144
[controller.git] / opendaylight / md-sal / sal-binding-broker / src / main / java / org / opendaylight / controller / sal / binding / codegen / CodeGenerationException.java
1 package org.opendaylight.controller.sal.binding.codegen;
2
3 public class CodeGenerationException extends RuntimeException{
4
5     public CodeGenerationException() {
6         super();
7     }
8
9     public CodeGenerationException(String message, Throwable cause, boolean enableSuppression,
10             boolean writableStackTrace) {
11         super(message, cause, enableSuppression, writableStackTrace);
12     }
13
14     public CodeGenerationException(String message, Throwable cause) {
15         super(message, cause);
16     }
17
18     public CodeGenerationException(String message) {
19         super(message);
20     }
21
22     public CodeGenerationException(Throwable cause) {
23         super(cause);
24     }
25 }