Move exceptions to kotlin package in JS library, introduce type aliases for exceptions in kotlin package in JVM runtime.

#KT-18 Fixed
This commit is contained in:
Ilya Gorbunov
2016-06-28 20:57:35 +03:00
parent afe1b7eab1
commit 0d7819e011
7 changed files with 87 additions and 41 deletions
@@ -0,0 +1,34 @@
/*
* Copyright 2010-2016 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package kotlin
public typealias Error = java.lang.Error
public typealias Exception = java.lang.Exception
public typealias RuntimeException = java.lang.RuntimeException
public typealias IllegalArgumentException = java.lang.IllegalArgumentException
public typealias IllegalStateException = java.lang.IllegalStateException
public typealias IndexOutOfBoundsException = java.lang.IndexOutOfBoundsException
public typealias UnsupportedOperationException = java.lang.UnsupportedOperationException
public typealias NumberFormatException = java.lang.NumberFormatException
public typealias NullPointerException = java.lang.NullPointerException
public typealias ClassCastException = java.lang.ClassCastException
public typealias AssertionError = java.lang.AssertionError
// kotlin or kotlin.collections?
public typealias NoSuchElementException = java.util.NoSuchElementException