Pandoc::Error(3pm) | User Contributed Perl Documentation | Pandoc::Error(3pm) |
Pandoc::Error - Pandoc document processing error
use Try::Tiny; try { ... } catch { if ( blessed $_ && $_->isa('Pandoc::Error') ) { ... } };
Throw an existing error or create and throw a new error. Setting field "message" is recommended. The message is enriched with error location. A stack trace can be added with $Carp::Verbose or Carp::Always.
The error message. Also returned on stringification.
This class does not inherit from Throwable, Exception::Class or Class::Exception but may do so in a future version.
2023-01-06 | perl v5.36.0 |