Skip to main content
Version: v2

Error Handling

One of the main focuses of Textwire is to provide a simple and easy-to-use API for developers. However, errors can still occur in your project. In this guide, you will learn how to handle errors in Textwire, enabling you to identify and resolve issues in your project.

When does an error occur?

If you call a function on a value that doesn't support that function, Textwire will return an error. Whether you use Textwire to parse a string or a file, you will get an error returned. Some example cases where errors can occur in Textwire are:

  • Passing the wrong argument type to a function. For example, passing an integer to a function that expects a string
  • Dividing by zero. This is a well known error in programming, and Textwire will result in an error if you try to divide by zero
  • Using a function that doesn't exist. You'll get a detailed error message if you try to use a function that doesn't exist in Textwire
  • Using a variable that doesn't exist. If you try to use a variable that doesn't exist, Textwire will return an error
  • Using a function on a value that doesn't support that function. If you try to use a function on a value that doesn't support that function, Textwire will return an error

Handling errors in Textwire

Handling errors in Textwire are handled in you Go code. Let's say you are evaluating a string that contains Textwire code with the incorrect function usage:

inp := "{{ name.split(1) }}"

result, err := textwire.EvaluateString(inp, map[string]interface{}{
"name": "Serhii Cho",
})

if err != nil {
// handle the error
}

The split function requires a string as an argument, not an integer. If an incorrect argument type is passed, Textwire will return an error from the EvaluateString function, which you can handle as needed.

In the same way you handle errors with evaluating a file or working with templating system.

What happens to the output?

If you use Textwire to evaluate a single file or a string, the output will be empty if an error occurs. When you use Textwire as a templating system, it's a bit different.

Error output in templates

info

When an error occurs, we cannot serve you the output to the frontend. The wrong usage of functions will lead to wrong function output, which can result in wrong data being displayed on the frontend. For better security and data integrity, the best way is to prevent the user of your site to see the output. You can read more about this here in the FAQ section.

When something goes wrong with your Textwire code, you'll get pre-defined HTML with the static message displayed:

Error output in Textwire

The actual error message will be handle depending on your logic, but it must not be displayed to the user for security reasons.