| 1 |
|
| 2 |
|
| 3 |
|
| 4 |
|
| 5 |
|
| 6 |
|
| 7 |
|
| 8 |
|
| 9 |
|
| 10 |
|
| 11 |
|
| 12 |
|
| 13 |
|
| 14 |
package org.locationtech.jts.util; |
| 15 |
|
| 16 |
/** |
| 17 |
* Thrown when the application is in an inconsistent state. Indicates a problem |
| 18 |
* with the code. |
| 19 |
* |
| 20 |
*@version 1.7 |
| 21 |
*/ |
| 22 |
public class AssertionFailedException extends RuntimeException { |
| 23 |
|
| 24 |
/** |
| 25 |
* Creates an <code>AssertionFailedException</code>. |
| 26 |
*/ |
| 27 |
public AssertionFailedException() { |
| 28 |
super(); |
| 29 |
} |
| 30 |
|
| 31 |
/** |
| 32 |
* Creates a <code>AssertionFailedException</code> with the given detail |
| 33 |
* message. |
| 34 |
* |
| 35 |
*@param message a description of the assertion |
| 36 |
*/ |
| 37 |
public AssertionFailedException(String message) { |
| 38 |
super(message); |
| 39 |
} |
| 40 |
} |
| 41 |
|
| 42 |
|
| 43 |
|