Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x | // Copyright (c) ZeroC, Inc. // slice2js version 3.8.0-alpha.0 // <auto-generated>Generated from Slice file 'ReplyStatus.ice'.</auto-generated> /* eslint-disable */ /* jshint ignore: start */ import * as Ice_EnumBase from "../Ice/EnumBase.js"; const Ice = { ...Ice_EnumBase, }; export { Ice }; /** * Represents the status of a reply. * A reply status can have any value in the range 0..255. Do not use this enum to marshal or unmarshal a reply * status unless you know its value corresponds to one of the enumerators defined below. */ Ice.ReplyStatus = Ice.defineEnum([ ['Ok', 0], ['UserException', 1], ['ObjectNotExist', 2], ['FacetNotExist', 3], ['OperationNotExist', 4], ['UnknownLocalException', 5], ['UnknownUserException', 6], ['UnknownException', 7], ['InvalidData', 8], ['Unauthorized', 9]]); |