Skip to content
This repository has been archived by the owner on Mar 15, 2022. It is now read-only.

Commit

Permalink
update SUIOException
Browse files Browse the repository at this point in the history
  • Loading branch information
X1nto committed Dec 13, 2021
1 parent 909f509 commit 20e67bb
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -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)
}

0 comments on commit 20e67bb

Please sign in to comment.