AddressMatch.MatchMachine.MatchMachine C# (CSharp) Method

MatchMachine() public method

public MatchMachine ( AddrSet addrset ) : System
addrset AddrSet
return System
        public MatchMachine(AddrSet addrset)
        {
            if (addrset == null)
            {
                throw new Exception("AddrSet is not initialized");
            }
            if (AddrSet.AddrGraph == null)
            {
                throw new Exception("Graph is not initialized");
            }

            _addrset = addrset;

            init();
        }