Compare commits

...

2 Commits

Author SHA1 Message Date
6f1134a6fb Merge pull request '1.4.1 release' (#10) from develop into main
All checks were successful
/ publish (push) Successful in 3m54s
Reviewed-on: Infendro/cli-kt#10
2026-01-29 16:48:33 +00:00
21769c20c4 enforce exception message 2026-01-18 21:45:55 +01:00

View File

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