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:
@@ -0,0 +1,53 @@
|
||||
/*
|
||||
* 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
|
||||
|
||||
@library
|
||||
public open class Error(message: String? = null) : Throwable(message) {}
|
||||
|
||||
@library
|
||||
public open class Exception(message: String? = null) : Throwable(message) {}
|
||||
|
||||
@library
|
||||
public open class RuntimeException(message: String? = null) : Exception(message) {}
|
||||
|
||||
@library
|
||||
public open class IllegalArgumentException(message: String? = null) : RuntimeException(message) {}
|
||||
|
||||
@library
|
||||
public open class IllegalStateException(message: String? = null) : RuntimeException(message) {}
|
||||
|
||||
@library
|
||||
public open class IndexOutOfBoundsException(message: String? = null) : RuntimeException(message) {}
|
||||
|
||||
@library
|
||||
public open class UnsupportedOperationException(message: String? = null) : RuntimeException(message) {}
|
||||
|
||||
@library
|
||||
public open class NumberFormatException(message: String? = null) : RuntimeException(message) {}
|
||||
|
||||
@library
|
||||
public open class NullPointerException(message: String? = null) : RuntimeException(message) {}
|
||||
|
||||
@library
|
||||
public open class ClassCastException(message: String? = null) : RuntimeException(message) {}
|
||||
|
||||
@library
|
||||
public open class AssertionError(message: String? = null) : Error(message) {}
|
||||
|
||||
@library
|
||||
public open class NoSuchElementException(message: String? = null) : Exception() {}
|
||||
@@ -16,38 +16,6 @@
|
||||
|
||||
package java.lang
|
||||
|
||||
@library
|
||||
open public class Error(message: String? = null) : Throwable(message) {}
|
||||
|
||||
@library
|
||||
open public class Exception(message: String? = null) : Throwable(message) {}
|
||||
|
||||
@library
|
||||
open public class RuntimeException(message: String? = null) : Exception(message) {}
|
||||
|
||||
@library
|
||||
public class IllegalArgumentException(message: String? = null) : RuntimeException(message) {}
|
||||
|
||||
@library
|
||||
public class IllegalStateException(message: String? = null) : RuntimeException(message) {}
|
||||
|
||||
@library
|
||||
public class IndexOutOfBoundsException(message: String? = null) : RuntimeException(message) {}
|
||||
|
||||
@library
|
||||
public class UnsupportedOperationException(message: String? = null) : RuntimeException(message) {}
|
||||
|
||||
@library
|
||||
public class NumberFormatException(message: String? = null) : RuntimeException(message) {}
|
||||
|
||||
@library
|
||||
public class NullPointerException(message: String? = null) : RuntimeException(message) {}
|
||||
|
||||
@library
|
||||
public class ClassCastException(message: String? = null) : RuntimeException(message) {}
|
||||
|
||||
@library
|
||||
public class AssertionError(message: String? = null) : Error(message) {}
|
||||
|
||||
@library
|
||||
public interface Runnable {
|
||||
|
||||
@@ -122,8 +122,6 @@ public open class LinkedHashMap<K, V>(
|
||||
initialCapacity: Int = DEFAULT_INITIAL_CAPACITY, loadFactor: Float = DEFAULT_LOAD_FACTOR, accessOrder: Boolean = false
|
||||
) : HashMap<K, V>(initialCapacity, loadFactor)
|
||||
|
||||
@library
|
||||
public open class NoSuchElementException(message: String? = null) : Exception() {}
|
||||
|
||||
@native
|
||||
public class Date() {
|
||||
|
||||
Reference in New Issue
Block a user