error.htm 846 B

123456789101112131415161718192021222324252627
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
  5. <title>Error</title>
  6. <link type="text/css" rel="stylesheet" href="../fpdf.css">
  7. </head>
  8. <body>
  9. <h1>Error</h1>
  10. <code>Error(<b>string</b> msg)</code>
  11. <h2>Description</h2>
  12. This method is automatically called in case of a fatal error; it simply throws an exception
  13. with the provided message.<br>
  14. An inherited class may override it to customize the error handling but the method should
  15. never return, otherwise the resulting document would probably be invalid.
  16. <h2>Parameters</h2>
  17. <dl class="param">
  18. <dt><code>msg</code></dt>
  19. <dd>
  20. The error message.
  21. </dd>
  22. </dl>
  23. <hr style="margin-top:1.5em">
  24. <div style="text-align:center"><a href="index.htm">Index</a></div>
  25. </body>
  26. </html>