~pbeaman/akiban-persistit/buffer-pool-warmup-sorted

« back to all changes in this revision

Viewing changes to src/main/java/com/persistit/exception/ConversionException.java

Merge from eclipse_canonical_format

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
        super();
30
30
    }
31
31
 
32
 
    public ConversionException(String msg) {
 
32
    public ConversionException(final String msg) {
33
33
        super(msg);
34
34
    }
35
35
 
36
 
    public ConversionException(Throwable t) {
 
36
    public ConversionException(final Throwable t) {
37
37
        super(t);
38
38
    }
39
39
 
40
 
    public ConversionException(String msg, Throwable t) {
 
40
    public ConversionException(final String msg, final Throwable t) {
41
41
        super(msg, t);
42
42
    }
43
43