TDT4165-Scala-Project/project_tasks/src/main/scala/exceptions/NoSufficientFundsException....

5 lines
149 B
Scala

package exceptions
class NoSufficientFundsException(message: String = null, cause: Throwable = null) extends RuntimeException(message, cause) {
}