异常类
class OvershiftException
public class OvershiftException <: Exception {
public init()
public init(message: String)
}
功能:移位运算中,当移位位数超过操作数位数时抛出的异常。
init()
public init()
功能:创建 OvershiftException 实例。
init(String)
public init(message: String)
功能:创建带有异常信息 message 的 OvershiftException 实例。
参数:
- message: String - 异常信息。
class UndershiftException
public class UndershiftException <: Exception {
public init()
public init(message: String)
}
功能:移位运算中,当移位位数小于 0 时抛出的异常。
init()
public init()
功能:创建 UndershiftException 实例。
init(String)
public init(message: String)
功能:创建带有异常信息 message 的 UndershiftException 实例。
参数:
- message: String - 异常信息。