generated from mingliqiye/lib-tem
- 将多个Java文件转换为Kotlin文件,包括CallType、QuickBaseTypeHandler等 - 升级Netty版本从4.2.9.Final到4.130.Final - 添加新的Netty重连调度器ClientScheduleReconnect功能 - 新增DateTime和MySQL UUID类型处理器支持 - 创建命名线程工厂NamedThreadFactory用于线程池管理 - 修复UUID转换方法名称错误 - 更新项目版本号从4.2.7到4.3.2 - 移除Java版本的ValueGetter类,使用Kotlin数据类替代
30 lines
969 B
Kotlin
30 lines
969 B
Kotlin
/*
|
|
* Copyright 2026 mingliqiye
|
|
*
|
|
* 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.
|
|
*
|
|
* ProjectName mingli-utils
|
|
* ModuleName mingli-utils.main
|
|
* CurrentFile StreamEmptyException.kt
|
|
* LastUpdate 2026-01-07 19:13:29
|
|
* UpdateUser MingLiPro
|
|
*/
|
|
|
|
package com.mingliqiye.utils.stream
|
|
|
|
class StreamEmptyException : RuntimeException {
|
|
constructor(message: String) : super(message)
|
|
|
|
constructor(message: String, cause: Throwable) : super(message, cause)
|
|
}
|