- Timestamp:
- 2016-05-17T02:13:45+02:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/mappaint/DividedScale.java
r10145 r10236 23 23 public class DividedScale<T> { 24 24 25 // this exception type is for debugging #8997 and can later be replaced 26 // by AssertionError 27 public static class RangeViolatedError extends Error { 28 public RangeViolatedError() { 29 } 30 25 /** 26 * This exception type is for debugging #8997 and can later be replaced by AssertionError 27 */ 28 public static class RangeViolatedError extends RuntimeException { 29 /** 30 * Constructs a new {@code RangeViolatedError} 31 * @param message error message 32 */ 31 33 public RangeViolatedError(String message) { 32 34 super(message);
Note:
See TracChangeset
for help on using the changeset viewer.