Home | History | Annotate | Download | only in lang

Lines Matching refs:AssertionError

34  *     new AssertionError(<i>expression</i>)
43 public class AssertionError extends Error {
47 * Constructs an AssertionError with no detail message.
49 public AssertionError() {
57 private AssertionError(String detailMessage) {
62 * Constructs an AssertionError with its detail message derived
73 public AssertionError(Object detailMessage) {
80 * Constructs an AssertionError with its detail message derived
87 public AssertionError(boolean detailMessage) {
92 * Constructs an AssertionError with its detail message derived
99 public AssertionError(char detailMessage) {
104 * Constructs an AssertionError with its detail message derived
111 public AssertionError(int detailMessage) {
116 * Constructs an AssertionError with its detail message derived
123 public AssertionError(long detailMessage) {
128 * Constructs an AssertionError with its detail message derived
135 public AssertionError(float detailMessage) {
140 * Constructs an AssertionError with its detail message derived
147 public AssertionError(double detailMessage) {
152 * Constructs a new {@code AssertionError} with the specified
164 public AssertionError(String message, Throwable cause) {