Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
function(what, _cause)
{
Ice.UserException.call(this, _cause);
this.what = what !== undefined ? what : "";
},
Ice.UserException,
(function(module, require, exports)
{
var Ice = require("ice").Ice;
var __M = Ice.__M;
var Slice = Ice.Slice;
var jderobot = __M.module("jderobot");
jderobot.JderobotException = Slice.defineUserException(
function(what, _cause)
{
Ice.UserException.call(this, _cause);
this.what = what !== undefined ? what : "";
},
Ice.UserException,
"jderobot::JderobotException",
function(__os)
{
__os.writeString(this.what);
},
function(__is)
{
this.what = __is.readString();
},
false,
false);
jderobot.ConfigurationNotExistException = Slice.defineUserException(
function(what, _cause)
{
jderobot.JderobotException.call(this, what, _cause);