Generate SqlException with your preferred error code



A quick and dirty way of generating SqlException

class SqlExceptionGenerator
    {
        public static void ThrowException(SqlConnection con)
        {
            con.Open(); // should be a valid connection
            SqlCommand cmd = new SqlCommand("raiserror(50005, 16, 1)", con);
            cmd.ExecuteNonQuery();
        }
    }

Comments

Popular posts from this blog

The specified initialization vector (IV) does not match the block size for this algorithm