KT-2823 TypeCastException has no message

#KT-2823 Fixed
This commit is contained in:
Natalia.Ukhorskaya
2012-10-10 14:45:43 +04:00
parent a31b748092
commit 78d22e9f81
4 changed files with 39 additions and 4 deletions
+4
View File
@@ -20,4 +20,8 @@ package jet;
* @author yole
*/
public class TypeCastException extends ClassCastException {
public TypeCastException(String s) {
super(s);
}
}