Skip to content

Commit

Permalink
Add exceptions in scenes
Browse files Browse the repository at this point in the history
  • Loading branch information
Sdmitrioul committed Jun 4, 2023
1 parent 3d209df commit 11b269b
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
package org.fbme.scenes.exceptions

class InitializationException : Exception {
constructor(message: String?) : super(message)
constructor(message: String?, cause: Throwable?) : super(message, cause)
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
package org.fbme.scenes.exceptions

class NoEntityException : Exception {
constructor(message: String?) : super(message)
constructor(message: String?, cause: Throwable?) : super(message, cause)
}

0 comments on commit 11b269b

Please sign in to comment.