We are currently building a Kotlin service which uses this sinch java package.
We are trying to try catch the exception ErrorResponseException, however, since the constructor access is not given, and by default it is private, our Kotlin service could not access this exception with error:
Cannot access '<init>': it is package-private in 'ErrorResponseException'
Can we update the constructor for this exception to be public?