Skip to content
Snippets Groups Projects
Commit 0dfca809 authored by Steven Murray's avatar Steven Murray Committed by Steven Murray
Browse files

Added castor::exception::NotAnOwner

parent e703c6f6
No related branches found
No related tags found
No related merge requests found
......@@ -73,6 +73,7 @@ char *sys_serrlist[SEMAXERR-SEBASEOFF+2]=
"Command line not parsed",
"Accept connection was interrupted",
"Failed to allocate memory",
"Not an owner",
"BAD ERROR NUMBER"
};
......
......@@ -84,8 +84,9 @@
#define SECMDLNNOTPRSD SEBASEOFF+50 /* Command line not parsed */
#define SEACCPTCONNINTR SEBASEOFF+51 /* Accept connection was interrupted */
#define SEBADALLOC SEBASEOFF+52 /* Failed to allocate memory */
#define SENOTANOWNER SEBASEOFF+53 /* Not an owner */
#define SEMAXERR SEBASEOFF+52 /* Maximum error number */
#define SEMAXERR SEBASEOFF+53 /* Maximum error number */
#define SERRNO (serrno - SEBASEOFF) /* User convenience */
/*
......
......@@ -211,6 +211,9 @@ The following error values might be returned by any package:
.TP
.B SEBADALLOC
(1052) Failed to allocate memory
.TP
.B SENOTANOWNER
(1053) Not an owner
.SH COPYTAPE ERRORS
None yet
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment