source:
trunk/src/main/java/omq/exception/SerializerException.java
@
80
Last change on this file since 80 was 62, checked in by gguerrero, 11 years ago | |
---|---|
File size: 312 bytes |
Line | |
---|---|
1 | package omq.exception; |
2 | |
3 | public class SerializerException extends Exception { |
4 | |
5 | /** |
6 | * |
7 | */ |
8 | private static final long serialVersionUID = 1L; |
9 | |
10 | public SerializerException(String message) { |
11 | super(message); |
12 | } |
13 | |
14 | public SerializerException(String message, Throwable cause) { |
15 | super(message, cause); |
16 | } |
17 | |
18 | |
19 | |
20 | } |
Note: See TracBrowser
for help on using the repository browser.