|
|
if (!_out.isClosed()) {
|
|
_out.print(
|
|
"### SERVER ERROR ###"
|
|
)
|
|
/*
|
|
// Is insecure but the code below will print errors with more details...
|
|
_out.print(
|
|
"SERVER ERROR # " +
|
|
_error.data().getString("file")
|
|
+":"+
|
|
_error.data().getString("line")
|
|
+" # "+
|
|
_error.data().getString("message")
|
|
)
|
|
*/
|
|
}
|