Example #1
0
 /// <summary>
 /// Initialize a new instance of <c>SteamException</c>.
 /// </summary>
 /// <param name="message">Message associated with the <c>SteamException</c>.</param>
 /// <param name="type"><see cref="SteamExceptionType" /> representing the type of exception thrown.</param>
 public SteamException(string message, SteamExceptionType type) : base(message)
 {
     Type = type;
 }
 /// <summary>
 /// Initialize a new instance of <c>SteamException</c>.
 /// </summary>
 /// <param name="message">Message associated with the <c>SteamException</c>.</param>
 /// <param name="type"><see cref="SteamExceptionType" /> representing the type of exception thrown.</param>
 public SteamException(string message, SteamExceptionType type)
     : base(message)
 {
     Type = type;
 }