# 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()`](https://docs.mune.finance/solidity-docs/broken-reference)
* [`unpause()`](https://docs.mune.finance/solidity-docs/broken-reference)

### Function `pause()`

Pause the contract. Revert if already paused.

### Function `unpause()`

Unpause the contract. Revert if already unpaused.
