update SUIOException

This commit is contained in:
X1nto 2021-12-13 14:00:38 +04:00
parent 909f509095
commit 20e67bbb7c
1 changed files with 6 additions and 1 deletions

View File

@ -1,4 +1,9 @@
package com.vanced.manager.core.io
class SUIOException {
import java.io.IOException
class SUIOException : IOException {
constructor(message: String) : super(message)
constructor(message: String, cause: Throwable) : super(message, cause)
constructor(cause: Throwable) : super(cause)
}