errornum.h #1

  • //
  • guest/
  • perforce_software/
  • p4/
  • 2014-1/
  • support/
  • errornum.h
  • View
  • Commits
  • Open Download .zip Download (2 KB)
/*
 * Copyright 1995, 1996 Perforce Software.  All rights reserved.
 */

/*
 * Errornum.h - error number definitions
 */

enum ErrorGeneric {

	EV_NONE 	= 0,	// misc

	// The fault of the user

	EV_USAGE	= 0x01,	// request not consistent with dox
	EV_UNKNOWN	= 0x02,	// using unknown entity
	EV_CONTEXT	= 0x03,	// using entity in wrong context
	EV_ILLEGAL	= 0x04,	// trying to do something you can't
	EV_NOTYET	= 0x05,	// something must be corrected first
	EV_PROTECT	= 0x06,	// protections prevented operation

	// No fault at all

	EV_EMPTY	= 0x11,	// action returned empty results

	// not the fault of the user

	EV_FAULT	= 0x21,	// inexplicable program fault
	EV_CLIENT	= 0x22,	// client side program errors
	EV_ADMIN	= 0x23,	// server administrative action required
	EV_CONFIG	= 0x24,	// client configuration inadequate
	EV_UPGRADE	= 0x25,	// client or server too old to interact
	EV_COMM		= 0x26,	// communications error
	EV_TOOBIG	= 0x27	// not ever Perforce can handle this much

} ;

enum ErrorSubsystem {

	ES_OS		= 0,	// OS error
	ES_SUPP		= 1,	// Misc support
	ES_LBR		= 2,	// librarian
	ES_RPC		= 3,	// messaging
	ES_DB		= 4,	// database
	ES_DBSUPP	= 5,	// database support
	ES_DM		= 6,	// data manager
	ES_SERVER	= 7,	// top level of server
	ES_CLIENT	= 8,	// top level of client
	ES_INFO		= 9,	// pseudo subsystem for information messages
	ES_HELP		= 10,	// pseudo subsystem for help messages
	ES_SPEC		= 11,	// pseudo subsystem for spec/comment messages
	ES_FTPD		= 12,	// P4FTP server
	ES_BROKER	= 13,	// Perforce Broker
	ES_P4QT		= 14	// P4V and other Qt based clients
} ;
# Change User Description Committed
#1 15902 Matt Attaway A second renaming that I will not obliterate as a badge of shame
//guest/perforce_software/p4/2014_1/support/errornum.h
#1 15901 Matt Attaway Clean up code to fit modern Workshop naming standards
//guest/perforce_software/p4/2014.1/support/errornum.h
#1 12188 Matt Attaway Move 'main' p4 into a release specific directory in prep for new releases
//guest/perforce_software/p4/support/errornum.h
#1 9129 Matt Attaway Initial commit of the 2014.1 p4/p4api source code