@Override
public boolean execute() throws MissingOrIncorrectArgumentException, InsufficientPermissionException {
if(errorCheck())
return true;
Transaction t = ShowCaseStandalone.pv.getLastTransaction(player);
if(t == null)
Messaging.send(player, Term.ERROR_TRANSACTION_NO_RECORDED.get());
else
Messaging.mlSend(player, t.info());
return true;
}