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

« back to all changes in this revision

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

Merge from eclipse_canonical_format

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
 
16
16
package com.persistit.exception;
17
17
 
18
 
 
19
18
/**
20
19
 * Thrown by {@link com.persistit.Volume} if the volume file has a different
21
20
 * internal ID value than expected. This condition can signify that a volume
29
28
        super();
30
29
    }
31
30
 
32
 
    public WrongVolumeException(String msg) {
 
31
    public WrongVolumeException(final String msg) {
33
32
        super(msg);
34
33
    }
35
34