- ci fixes

This commit is contained in:
nathaniel.doef 2022-07-12 14:26:30 -04:00
parent a5e4d488c4
commit fcc3bdf0bf
2 changed files with 2 additions and 2 deletions

View File

@ -25,7 +25,7 @@ public final class Msg {
/**
* IMPORTANT: Please update the following comment after you add a new code
* Last code value: 2114
* Last code value: 2115
*/
private Msg() {}

View File

@ -525,7 +525,7 @@ public abstract class BaseCommand implements Comparable<BaseCommand> {
return Optional.of(new TlsAuthentication(keyStoreInfo, trustStoreInfo));
}
catch(Exception e){
throw new RuntimeException(e);
throw new RuntimeException(Msg.code(2115)+"Could not create TLS configuration options", e);
}
}