Move and rename exception classes in module 'runtime.jvm'

This commit is contained in:
Alexander Udalov
2014-02-14 21:59:40 +04:00
parent aef0fabd53
commit 4afdac3efa
3 changed files with 5 additions and 9 deletions
@@ -14,7 +14,7 @@
* limitations under the License.
*/
package jet;
package kotlin;
public class NoPatternMatchedException extends RuntimeException {
public class NoWhenBranchMatchedException extends RuntimeException {
}
@@ -14,10 +14,9 @@
* limitations under the License.
*/
package jet;
package kotlin;
public class TypeCastException extends ClassCastException {
public TypeCastException(String s) {
super(s);
}