fCraft.PlayerExceptions.PlayerExceptions C# (CSharp) Method

PlayerExceptions() public method

public PlayerExceptions ( [ included, [ excluded ) : System
included [
excluded [
return System
        public PlayerExceptions( [NotNull] PlayerInfo[] included, [NotNull] PlayerInfo[] excluded )
        {
            if ( included == null )
                throw new ArgumentNullException( "included" );
            if ( excluded == null )
                throw new ArgumentNullException( "excluded" );
            Included = included;
            Excluded = excluded;
        }
PlayerExceptions