All Downloads are FREE. Search and download functionalities are using the official Maven repository.

runtime.csharp.IRT.DispatcherException.cs Maven / Gradle / Ivy


using System;
using System.Collections;
using System.Collections.Generic;

namespace IRT {
    public class DispatcherException: Exception {
        public DispatcherException() {
        }

        public DispatcherException(string message): base(message) {
        }

        public DispatcherException(string message, Exception inner): base(message, inner) {
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy