I got garbled exception message as following when I run `livenmethods` CLHSDB command:
```
sun.jvm.hotspot.debugger.DebuggerException : ?w???????W
```
My Windows laptop is set Japanese Locale, garbled message was written in Japanese.
saproc.dll would throw exception via `ThrowNew()` JNI function, but it accepts UTF-8 encoded message. However `FormatMessage()` Windows API would not return UTF-8 encoded string on Japanese locale.
```
sun.jvm.hotspot.debugger.DebuggerException : ?w???????W
```
My Windows laptop is set Japanese Locale, garbled message was written in Japanese.
saproc.dll would throw exception via `ThrowNew()` JNI function, but it accepts UTF-8 encoded message. However `FormatMessage()` Windows API would not return UTF-8 encoded string on Japanese locale.