Advertisement
Guest User

SE API Exception

a guest
Sep 18th, 2018
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.37 KB | None | 0 0
  1. /// <summary>
  2. /// This class defines the exception ErrorDeletingFailed that is thrown if
  3. /// the deleting of the secured data from the storage and the
  4. /// initialization description from the SE API before the restoring failed.
  5. /// </summary>
  6. public sealed class ErrorDeletingFailed : Exception
  7. {
  8.    
  9.     /// <summary>
  10.     /// Initializes a new instance of the <see cref="ErrorDeletingFailed"/> class.
  11.     /// </summary>
  12.     public ErrorDeletingFailed()
  13.     {
  14.     }
  15.    
  16.     /// <summary>
  17.     /// Initializes a new instance of the <see cref="ErrorDeletingFailed"/> class with a specified error message.
  18.     /// </summary>
  19.     /// <param name="message">The error message that explains the reason for the exception.</param>
  20.     public ErrorDeletingFailed(string message)
  21.         : base(message)
  22.     {
  23.        
  24.     }
  25.    
  26.     /// <summary>
  27.     /// Initializes a new instance of the <see cref="ErrorDeletingFailed"/> class with a specified error message and a reference to the inner exception that is the cause of this exception.
  28.     /// </summary>
  29.     /// <param name="message">vThe error message that explains the reason for the exception.</param>
  30.     /// <param name="innerException">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>
  31.     public ErrorDeletingFailed(String message, Exception innerException)
  32.         : base(message, innerException)
  33.     {
  34.  
  35.     }
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement