Changeset 5be248d1d84b3bbf014c1d95f45670d642777584
- Timestamp:
- 06/04/10 18:20:00
(3 years ago)
- Author:
- Mark Harrison <mark@omniti.com>
- git-committer:
- Mark Harrison <mark@omniti.com> 1275675600 +0000
- git-parent:
[5bd565fe59f22420dba6fb903956a5fa6f8e3102]
- git-author:
- Mark Harrison <mark@omniti.com> 1275675600 +0000
- Message:
Give a hint when someone mistakenly calls a wildcard module wrong (refs #12)
git-svn-id: https://labs.omniti.com/resmon/branches/resmon2@411 8c0face9-b7db-6ec6-c4b3-d5f7145c7d55
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rd710bcb |
r5be248d |
|
| 13 | 13 | |
|---|
| 14 | 14 | sub handler { |
|---|
| 15 | | die "Monitor not implemented.\n"; |
|---|
| | 15 | die "Monitor not implemented. Perhaps this is a wilcard only module?\n"; |
|---|
| 16 | 16 | } |
|---|
| 17 | 17 | |
|---|
| 18 | 18 | sub wildcard_handler { |
|---|
| 19 | | die "Monitor not implemented.\n"; |
|---|
| | 19 | die "Monitor not implemented. Perhaps this is a non-wildcard module?\n"; |
|---|
| 20 | 20 | } |
|---|
| 21 | 21 | |
|---|