Changes
Page history
Update System Global API
authored
Jun 12, 2023
by
Connor Quick
Hide whitespace changes
Inline
Side-by-side
API/System-Global-API.md
View page @
19f24cfe
...
...
@@ -8,19 +8,20 @@ It is used like:
## `addErrorMessage(String message)`
### Description
### Description
The
`addErrorMessage`
method takes a string as an input and adds it as an error message for the current session.
The `addErrorMessage` method takes a string as an input and adds it as an error message for the current
session.
### Parameters
### Parameters
-
`message`
: A string representing the error message.
- `message`: A string representing the error message.
### Usage
### Usage
```
javascript
addErrorMessage
(
"
This is an error message.
"
);
```
```javascript
addErrorMessage("This is an error message.");
```
## `addInfoMessage(String message)`
...
...
...
...