Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
- 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)
- {
- }
- }
- }
|