|
- using System;
-
- namespace SUISS.Scheduling
- {
- public class SchedulerException : Exception
- {
- public SchedulerException()
- {
- }
-
- public SchedulerException(string message) : base(message)
- {
- }
-
- public SchedulerException(string message, Exception innerException) : base(message, innerException)
- {
- }
- }
- }
|