public DecoderException(string string0, Exception exception0) : base(string0, exception0) { Error = DecoderError.UnknownError; }
public static bool TryDecoderError(string value, out DecoderError decoderError) => decoderErrorDict.TryGetValue(value, out decoderError);
public DecoderException(DecoderError decoderError0, Exception exception0) : this(smethod_0(decoderError0), exception0) { Error = decoderError0; }
public static string smethod_0(DecoderError decoderError0) { return("Decoder error: " + decoderError0); }
public static string smethod_0(DecoderError decoderError_0) { return "Decoder error: " + decoderError_0; }
public DecoderException(DecoderError decoderError_0, Exception exception_0) : this(DecoderException.smethod_0(decoderError_0), exception_0) { this.Error = decoderError_0; }
public DecoderException(string string_0, Exception exception_0) : base(string_0, exception_0) { this.Error = DecoderError.UnknownError; }