enforce exception message

This commit is contained in:
2026-01-18 21:45:55 +01:00
parent d5a66f6853
commit 21769c20c4

View File

@@ -1,3 +1,5 @@
package com.infendro.cli.exception
abstract class BuildException : Exception()
abstract class BuildException : Exception() {
abstract override val message: String
}