예제 #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="LockedException"/> class.
 /// </summary>
 /// <param name="message">The message that describes the error.</param>
 /// <param name="token">A <see cref="LockToken"/> associated with the exception.</param>
 public LockedException(string?message, LockToken token)
     : base(message)
 {
     Token = token;
 }
예제 #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="LockedException"/> class.
 /// </summary>
 /// <param name="message">The error message that explains the reason for the exception.</param>
 /// <param name="innerException">The exception that is the cause of the current exception.
 /// If this parameter is not <see langword="null"/>, the current exception is raised in a catch block
 /// that handles the inner exception.</param>
 /// <param name="token">A <see cref="LockToken"/> associated with the exception.</param>
 public LockedException(string?message, Exception?innerException, LockToken token)
     : base(message, innerException)
 {
     Token = token;
 }
예제 #3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="LockedException"/> class.
 /// </summary>
 /// <param name="token">A <see cref="LockToken"/> associated with the exception.</param>
 public LockedException(LockToken token)
     : base("The configuration of an object is locked and cannot be further changed.")
 {
     Token = token;
 }