> For the complete documentation index, see [llms.txt](https://docs.saddle.finance/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.saddle.finance/solidity-docs/ownerpausable.md).

# OwnerPausable

An ownable contract allows the owner to pause and unpause the contract without a delay.

Only methods using the provided modifiers will be paused.

## Functions:

* [`pause()`](#OwnerPausable-pause--)
* [`unpause()`](#OwnerPausable-unpause--)

## Function `pause()` <a href="#ownerpausable-pause" id="ownerpausable-pause"></a>

Pause the contract. Revert if already paused.

## Function `unpause()` <a href="#ownerpausable-unpause" id="ownerpausable-unpause"></a>

Unpause the contract. Revert if already unpaused.
