// Decompiled with JetBrains decompiler // Type: Microsoft.InfoCards.ExceptionTranslationTable // Assembly: infocard, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 // MVID: 516D8B44-4448-4D2C-8B8E-FFBB3FFE472B // Assembly location: C:\Users\Administrateur\Downloads\Virusshare-00000-msil\Virus.Win32.Expiro.w-69bb73081eac86b8cf86f45e33515d0095855636967076e2b593d7a30cd80a07.exe using System; using System.Collections.Generic; using System.Security; namespace Microsoft.InfoCards { internal sealed class ExceptionTranslationTable { private Dictionary m_table; private static ExceptionTranslationTable s_thisTable; public static ExceptionTranslationTable Instance { get { if (ExceptionTranslationTable.s_thisTable == null) ExceptionTranslationTable.s_thisTable = new ExceptionTranslationTable(); return ExceptionTranslationTable.s_thisTable; } } private ExceptionTranslationTable() { this.m_table = new Dictionary(); this.m_table.Add(typeof (ApplicationException), -2146232832); this.m_table.Add(typeof (InvalidOperationException), -1073413888); this.m_table.Add(typeof (NotImplementedException), -2147467263); this.m_table.Add(typeof (SecurityException), -2147024891); } public int this[Type key] => this.m_table[key]; public bool ContainsKey(Type key) => this.m_table.ContainsKey(key); } }