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

Added the following exception:

    castor::exception::AlreadyInitialized
parent 44395619
No related branches found
No related tags found
No related merge requests found
......@@ -69,6 +69,7 @@ char *sys_serrlist[SEMAXERR-SEBASEOFF+2]=
"Mismatch",
"Request failed",
"Invalid number of arguments",
"Already initialized",
"BAD ERROR NUMBER"
};
......
......@@ -80,8 +80,9 @@
#define SEMISMATCH SEBASEOFF+46 /* Mismatch */
#define SEREQUESTFAILED SEBASEOFF+47 /* Request failed */
#define SEINVALIDNBARGS SEBASEOFF+48 /* Invalid number of arguments */
#define SEALREADYINIT SEBASEOFF+49 /* Already initialized */
#define SEMAXERR SEBASEOFF+48 /* Maximum error number */
#define SEMAXERR SEBASEOFF+49 /* Maximum error number */
#define SERRNO (serrno - SEBASEOFF) /* User convenience */
/*
......
......@@ -199,6 +199,9 @@ The following error values might be returned by any package:
.TP
.B SEINVALIDNBARGS
(1048) Invalid number of arguments
.TP
.B SEALREADYINIT
(1049) Already initialized
.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