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 @
6d718006
...
...
@@ -8,20 +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)`
...
...
...
...