We need you! We're working hard on the next version of Developer Fusion -
Let us know what you think we should be up to!
- using System;
- using System.Runtime.Serialization;
- namespace System.Resources
- {
- [Serializable()]
- [System.Runtime.InteropServices.ComVisible(true)]
- public class MissingSatelliteAssemblyException : SystemException
- {
- private string _cultureName;
-
- public MissingSatelliteAssemblyException() : base(Environment.GetResourceString("MissingSatelliteAssembly_Default"))
- {
- SetErrorCode(__HResults.COR_E_MISSINGSATELLITEASSEMBLY);
- }
-
- public MissingSatelliteAssemblyException(string message) : base(message)
- {
- SetErrorCode(__HResults.COR_E_MISSINGSATELLITEASSEMBLY);
- }
-
- public MissingSatelliteAssemblyException(string message, string cultureName) : base(message)
- {
- SetErrorCode(__HResults.COR_E_MISSINGSATELLITEASSEMBLY);
- _cultureName = cultureName;
- }
-
- public MissingSatelliteAssemblyException(string message, Exception inner) : base(message, inner)
- {
- SetErrorCode(__HResults.COR_E_MISSINGSATELLITEASSEMBLY);
- }
-
- protected MissingSatelliteAssemblyException(SerializationInfo info, StreamingContext context) : base(info, context)
- {
- }
-
- public string CultureName {
- get { return _cultureName; }
- }
- }
- }