pull/1336/head
parent
9185963766
commit
6b38f6b118
@ -1,13 +1,49 @@ |
||||
@file:Suppress("unused") |
||||
|
||||
package io.legado.app.model |
||||
|
||||
class AppException(msg: String) : Exception(msg) |
||||
|
||||
/** |
||||
* |
||||
*/ |
||||
class NoStackTraceException(msg: String) : Exception(msg) { |
||||
|
||||
override fun fillInStackTrace(): Throwable { |
||||
return this |
||||
} |
||||
|
||||
} |
||||
|
||||
/** |
||||
* 目录为空 |
||||
*/ |
||||
class TocEmptyException(msg: String) : Exception(msg) { |
||||
|
||||
override fun fillInStackTrace(): Throwable { |
||||
return this |
||||
} |
||||
|
||||
} |
||||
|
||||
/** |
||||
* 内容为空 |
||||
*/ |
||||
class ContentEmptyException(msg: String) : Exception(msg) |
||||
class ContentEmptyException(msg: String) : Exception(msg) { |
||||
|
||||
override fun fillInStackTrace(): Throwable { |
||||
return this |
||||
} |
||||
|
||||
} |
||||
|
||||
/** |
||||
* 并发限制 |
||||
*/ |
||||
class ConcurrentException(msg: String, val waitTime: Long) : Exception(msg) |
||||
class ConcurrentException(msg: String, val waitTime: Long) : Exception(msg) { |
||||
|
||||
override fun fillInStackTrace(): Throwable { |
||||
return this |
||||
} |
||||
|
||||
} |
Loading…
Reference in new issue