KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > java > lang > AssertionError


1 /*
2  * Copyright 2006 Google Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License"); you may not
5  * use this file except in compliance with the License. You may obtain a copy of
6  * the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12  * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13  * License for the specific language governing permissions and limitations under
14  * the License.
15  */

16 package java.lang;
17
18 /**
19  * Represents an error caused by an assertion failure.
20  */

21 public class AssertionError extends Error JavaDoc {
22
23   public AssertionError() {
24   }
25
26   private AssertionError(String JavaDoc message) {
27     super(message);
28   }
29
30   public AssertionError(Object JavaDoc message) {
31     super(String.valueOf(message), message instanceof Throwable JavaDoc
32       ? (Throwable JavaDoc) message : null);
33   }
34
35   public AssertionError(boolean message) {
36     this(String.valueOf(message));
37   }
38
39   public AssertionError(char message) {
40     this(String.valueOf(message));
41   }
42
43   public AssertionError(int message) {
44     this(String.valueOf(message));
45   }
46
47   public AssertionError(long message) {
48     this(String.valueOf(message));
49   }
50
51   public AssertionError(float message) {
52     this(String.valueOf(message));
53   }
54
55   public AssertionError(double message) {
56     this(String.valueOf(message));
57   }
58 }
59
Popular Tags