Skip to:
In ACF and Lucee the default type of exception without a declared type is Application. In Boxlang it is custom. The following code:
type
Application
custom
results in a custom error . Code like this in the s3SDK fails due to this discrepancy:
custom error
Add a throw BIF overload in Compat to maintain compatibility with the default type
throw
Resolved via commit `fbda081` in compat module
In ACF and Lucee the default type of exception without a declared
type
isApplication
. In Boxlang it iscustom
.The following code:
results in a
custom error
. Code like this in the s3SDK fails due to this discrepancy:Add a
throw
BIF overload in Compat to maintain compatibility with the default type