Beispiel #1
0
 public SchedulerException(SchedulerExceptionType exceptionType, String message)
     : base(message)
 {
     this.ExceptionType = exceptionType;
 }
Beispiel #2
0
 public SchedulerException(SchedulerExceptionType type, DtoBase additionalInfo)
     : this(type, String.Empty)
 {
     this.AdditionalInfo = additionalInfo;
 }
Beispiel #3
0
 public SchedulerException(SchedulerExceptionType exceptionType)
     : base(String.Empty)
 {
     this.ExceptionType = exceptionType;
 }
Beispiel #4
0
        //TODO: No data member in core project, -By RJ
        //[DataMember(Name = "V")]
        // TODO: No DTO Base, should be coming through some interface
        //public DtoBase AdditionalInfo { get; set; }

        #region Construction

#if SILVERLIGHT
        public SchedulerException(SchedulerExceptionType exceptionType)
        {
            this.ExceptionType = exceptionType;
        }