01: package com.bm.utils.csv;
02:
03: /**
04: * Signals that binary data was encountered and continuing with a text operation
05: * would likely corrupt the data.
06: *
07: * @author Daniel Wiese
08: * @since 17.04.2006
09: */
10: public class BadDelimiterException extends RuntimeException {
11:
12: private static final long serialVersionUID = 1L;
13:
14: /**
15: * Constructs an IOException with null as its error detail message.
16: *
17: * @since ostermillerutils 1.02.20
18: */
19: public BadDelimiterException() {
20: super ();
21: }
22:
23: /**
24: * Constructs an exception with the specified detail message. The error
25: * message string s can later be retrieved by the Throwable.getMessage()
26: * method of class java.lang.Throwable.
27: *
28: * @param s
29: * the detail message.
30: *
31: * @since ostermillerutils 1.02.20
32: */
33: public BadDelimiterException(String s) {
34: super(s);
35: }
36: }
|