1234567891011121314151617181920212223 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace SmartCoalApplication.Core
- {
- public class WorkerThreadException : PdnException
- {
- private const string defaultMessage = "Worker thread threw an exception";
- public WorkerThreadException(Exception innerException)
- : this(defaultMessage, innerException)
- {
- }
- public WorkerThreadException(string message, Exception innerException)
- : base(message, innerException)
- {
- }
- }
- }
|