Acme.Northwind.Install.SqlErrorForm.Setup C# (CSharp) Method

Setup() public method

public Setup ( InvalidSQLException exception ) : void
exception InvalidSQLException
return void
		public void Setup(InvalidSQLException exception)
		{
			txtError.Text = exception.InnerException.ToString();
			txtSql.Text = exception.SQL;
		}
	}