Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions SmartThreadPool/Exceptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace Amib.Threading
#region Exceptions

/// <summary>
/// Represents an exception in case IWorkItemResult.GetResult has been canceled
/// Represents an exception in case IWorkItemResult.GetResult has been canceled.
/// </summary>
public sealed partial class WorkItemCancelException : Exception
{
Expand All @@ -26,7 +26,7 @@ public WorkItemCancelException(string message, Exception e)
}

/// <summary>
/// Represents an exception in case IWorkItemResult.GetResult has been timed out
/// Represents an exception in case IWorkItemResult.GetResult has been timed out.
/// </summary>
public sealed partial class WorkItemTimeoutException : Exception
{
Expand All @@ -46,7 +46,7 @@ public WorkItemTimeoutException(string message, Exception e)
}

/// <summary>
/// Represents an exception in case IWorkItemResult.GetResult has been timed out
/// Represents an exception in case IWorkItemResult.GetResult has been timed out.
/// </summary>
public sealed partial class WorkItemResultException : Exception
{
Expand All @@ -68,7 +68,7 @@ public WorkItemResultException(string message, Exception e)

/// <summary>
/// Represents an exception in case the STP queue is full and work item cannot be queued.
/// Relevant when the STP has a queue size limit
/// Relevant when the STP has a queue size limit.
/// </summary>
public sealed partial class QueueRejectedException : Exception
{
Expand All @@ -88,7 +88,7 @@ public QueueRejectedException(string message, Exception e)
}

/// <summary>
/// Represents an exception in case IWorkItemResult.GetResult has been canceled
/// Represents an exception in case IWorkItemResult.GetResult has been canceled.
/// </summary>
[Serializable]
public sealed partial class WorkItemCancelException
Expand All @@ -100,7 +100,7 @@ public WorkItemCancelException(SerializationInfo si, StreamingContext sc)
}

/// <summary>
/// Represents an exception in case IWorkItemResult.GetResult has been timed out
/// Represents an exception in case IWorkItemResult.GetResult has been timed out.
/// </summary>
[Serializable]
public sealed partial class WorkItemTimeoutException
Expand All @@ -112,7 +112,7 @@ public WorkItemTimeoutException(SerializationInfo si, StreamingContext sc)
}

/// <summary>
/// Represents an exception in case IWorkItemResult.GetResult has been timed out
/// Represents an exception in case IWorkItemResult.GetResult has been timed out.
/// </summary>
[Serializable]
public sealed partial class WorkItemResultException
Expand All @@ -124,7 +124,7 @@ public WorkItemResultException(SerializationInfo si, StreamingContext sc)
}

/// <summary>
/// Represents an exception in case IWorkItemResult.GetResult has been timed out
/// Represents an exception in case IWorkItemResult.GetResult has been timed out.
/// </summary>
[Serializable]
public sealed partial class QueueRejectedException
Expand Down
Loading