Sub-Class "checker" does not override all virtual methods of abstract superclass 'ovm_subscriber"

In reply to John Verif:

Because SV has argument binding by name, the argument names in your subclass must match the argument names in the super class. So your write() method should look like

function void write (T t);
$display("I am here");
endfunction