Illegal bins Vs assertions

In reply to mseyunni:

assert property (...) else $error(...); // run time error - simulation continues
assert property (...) else $fatal(..); // simulation halts immediately
assert property (...) else `uvm_error("ID",...) // run time error - UVM gives you the ability to suppress, change the severity, callbacks, and much more.