using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace HaaSMiddleware.HpcConnectionFramework { public class SshCommandException : ApplicationException { public SshCommandException(string message) : base(message) { } public SshCommandException(string message, Exception internalException) : base(message, internalException) { } } }