CasperJSでstepのタイムアウト時に、エラーで終了させず、次のステップに継続させる方法を教えて下さい。

下記のコードでは、

casper.on('step.timeout', function(step, timeout) {
  this.echo(step);
  this.clear();
  this.page.stop();
});

下記のエラーが発生し、スクリプト自体が終了してしまいます。

313
[error] [phantom] Maximum step execution timeout exceeded for step 313
Maximum step execution timeout exceeded for step 313