using System; namespace AsterNET.FastAGI { /// /// An InvalidOrUnknownCommandException is thrown when the reader receives a reply with status code 510. /// public class InvalidOrUnknownCommandException : AGIException { /// /// Creates a new InvalidOrUnknownCommandException. /// /// the invalid or unknown command. public InvalidOrUnknownCommandException(string command) : base("Invalid or unknown command: " + command) { } } }