Entitas.EntitasException.EntitasException C# (CSharp) Method

EntitasException() public method

public EntitasException ( string message, string hint ) : System
message string
hint string
return System
        public EntitasException(string message, string hint)
            : base(hint != null ? (message + "\n" + hint) : message)
        {
        }
EntitasException