Mac-Errors

 view release on metacpan or  search on metacpan

src/Errors.pl  view on Meta::CPAN

  tooManySkts                   = -1098,
  badATPSkt                     = -1099,
  badBuffNum                    = -1100,
  noRelErr                      = -1101,
  cbNotFound                    = -1102,
  noSendResp                    = -1103,
  noDataArea                    = -1104,
  reqAborted                    = -1105
};

/* ADSP Error Codes */
enum {
                                        /* driver control ioResults */
  errRefNum                     = -1280, /* bad connection refNum */
  errAborted                    = -1279, /* control call was aborted */
  errState                      = -1278, /* bad connection state for this operation */
  errOpening                    = -1277, /* open connection request failed */
  errAttention                  = -1276, /* attention message too long */
  errFwdReset                   = -1275, /* read terminated by forward reset */
  errDSPQueueSize               = -1274, /* DSP Read/Write Queue Too small */
  errOpenDenied                 = -1273 /* open connection request was denied */
};

enum {
  /* Apple event manager error messages */
  errAECoercionFail             = -1700, /* bad parameter data or unable to coerce the data supplied */
  errAEDescNotFound             = -1701,
  errAECorruptData              = -1702,
  errAEWrongDataType            = -1703,
  errAENotAEDesc                = -1704,
  errAEBadListItem              = -1705, /* the specified list item does not exist */
  errAENewerVersion             = -1706, /* need newer version of the AppleEvent manager */
  errAENotAppleEvent            = -1707, /* the event is not in AppleEvent format */
  errAEEventNotHandled          = -1708, /* the AppleEvent was not handled by any handler */
  errAEReplyNotValid            = -1709, /* AEResetTimer was passed an invalid reply parameter */
  errAEUnknownSendMode          = -1710, /* mode wasn't NoReply, WaitReply, or QueueReply or Interaction level is unknown */
  errAEWaitCanceled             = -1711, /* in AESend, the user cancelled out of wait loop for reply or receipt */
  errAETimeout                  = -1712, /* the AppleEvent timed out */
  errAENoUserInteraction        = -1713, /* no user interaction is allowed */
  errAENotASpecialFunction      = -1714, /* there is no special function for/with this keyword */
  errAEParamMissed              = -1715, /* a required parameter was not accessed */
  errAEUnknownAddressType       = -1716, /* the target address type is not known */
  errAEHandlerNotFound          = -1717, /* no handler in the dispatch tables fits the parameters to AEGetEventHandler or AEGetCoercionHandler */
  errAEReplyNotArrived          = -1718, /* the contents of the reply you are accessing have not arrived yet */
  errAEIllegalIndex             = -1719, /* index is out of range in a put operation */
  errAEImpossibleRange          = -1720, /* A range like 3rd to 2nd, or 1st to all. */
  errAEWrongNumberArgs          = -1721, /* Logical op kAENOT used with other than 1 term */
  errAEAccessorNotFound         = -1723, /* Accessor proc matching wantClass and containerType or wildcards not found */
  errAENoSuchLogical            = -1725, /* Something other than AND, OR, or NOT */
  errAEBadTestKey               = -1726, /* Test is neither typeLogicalDescriptor nor typeCompDescriptor */
  errAENotAnObjSpec             = -1727, /* Param to AEResolve not of type 'obj ' */
  errAENoSuchObject             = -1728, /* e.g.,: specifier asked for the 3rd, but there are only 2. Basically, this indicates a run-time resolution error. */
  errAENegativeCount            = -1729, /* CountProc returned negative value */
  errAEEmptyListContainer       = -1730, /* Attempt to pass empty list as container to accessor */
  errAEUnknownObjectType        = -1731, /* available only in version 1.0.1 or greater */
  errAERecordingIsAlreadyOn     = -1732, /* available only in version 1.0.1 or greater */
  errAEReceiveTerminate         = -1733, /* break out of all levels of AEReceive to the topmost (1.1 or greater) */
  errAEReceiveEscapeCurrent     = -1734, /* break out of only lowest level of AEReceive (1.1 or greater) */
  errAEEventFiltered            = -1735, /* event has been filtered, and should not be propogated (1.1 or greater) */
  errAEDuplicateHandler         = -1736, /* attempt to install handler in table for identical class and id (1.1 or greater) */
  errAEStreamBadNesting         = -1737, /* nesting violation while streaming */
  errAEStreamAlreadyConverted   = -1738, /* attempt to convert a stream that has already been converted */
  errAEDescIsNull               = -1739, /* attempting to perform an invalid operation on a null descriptor */
  errAEBuildSyntaxError         = -1740, /* AEBuildDesc and friends detected a syntax error */
  errAEBufferTooSmall           = -1741 /* buffer for AEFlattenDesc too small */
};

enum {
  errOSASystemError             = -1750,
  errOSAInvalidID               = -1751,
  errOSABadStorageType          = -1752,
  errOSAScriptError             = -1753,
  errOSABadSelector             = -1754,
  errOSASourceNotAvailable      = -1756,
  errOSANoSuchDialect           = -1757,
  errOSADataFormatObsolete      = -1758,
  errOSADataFormatTooNew        = -1759,
  errOSACorruptData             = errAECorruptData,
  errOSARecordingIsAlreadyOn    = errAERecordingIsAlreadyOn,
  errOSAComponentMismatch       = -1761, /* Parameters are from 2 different components */
  errOSACantOpenComponent       = -1762 /* Can't connect to scripting system with that ID */
};



enum {
 /* AppleEvent error definitions */
  errOffsetInvalid              = -1800,
  errOffsetIsOutsideOfView      = -1801,
  errTopOfDocument              = -1810,
  errTopOfBody                  = -1811,
  errEndOfDocument              = -1812,
  errEndOfBody                  = -1813
};


enum {
                                        /* Drag Manager error codes */
  badDragRefErr                 = -1850, /* unknown drag reference */
  badDragItemErr                = -1851, /* unknown drag item reference */
  badDragFlavorErr              = -1852, /* unknown flavor type */
  duplicateFlavorErr            = -1853, /* flavor type already exists */
  cantGetFlavorErr              = -1854, /* error while trying to get flavor data */
  duplicateHandlerErr           = -1855, /* handler already exists */
  handlerNotFoundErr            = -1856, /* handler not found */
  dragNotAcceptedErr            = -1857, /* drag was not accepted by receiver */
  unsupportedForPlatformErr     = -1858, /* call is for PowerPC only */
  noSuitableDisplaysErr         = -1859, /* no displays support translucency */
  badImageRgnErr                = -1860, /* bad translucent image region */
  badImageErr                   = -1861, /* bad translucent image PixMap */
  nonDragOriginatorErr          = -1862 /* illegal attempt at originator only data */
};


enum {
	/*QuickTime errors*/
  couldNotResolveDataRef        = -2000,
  badImageDescription           = -2001,
  badPublicMovieAtom            = -2002,
  cantFindHandler               = -2003,
  cantOpenHandler               = -2004,

src/Errors.pl  view on Meta::CPAN

  kDSpConfirmSwitchWarning      = -30448L,
  kDSpInternalErr               = -30449L,
  kDSpStereoContextErr          = -30450L
};


enum {
/* Find By Content */
  kFBCvTwinExceptionErr         = -30500, /*no telling what it was*/
  kFBCnoIndexesFound            = -30501,
  kFBCallocFailed               = -30502, /*probably low memory*/
  kFBCbadParam                  = -30503,
  kFBCfileNotIndexed            = -30504,
  kFBCbadIndexFile              = -30505, /*bad FSSpec, or bad data in file*/
  kFBCcompactionFailed          = -30506, /*V-Twin exception caught*/
  kFBCvalidationFailed          = -30507, /*V-Twin exception caught*/
  kFBCindexingFailed            = -30508, /*V-Twin exception caught*/
  kFBCcommitFailed              = -30509, /*V-Twin exception caught*/
  kFBCdeletionFailed            = -30510, /*V-Twin exception caught*/
  kFBCmoveFailed                = -30511, /*V-Twin exception caught*/
  kFBCtokenizationFailed        = -30512, /*couldn't read from document or query*/
  kFBCmergingFailed             = -30513, /*couldn't merge index files*/
  kFBCindexCreationFailed       = -30514, /*couldn't create index*/
  kFBCaccessorStoreFailed       = -30515,
  kFBCaddDocFailed              = -30516,
  kFBCflushFailed               = -30517,
  kFBCindexNotFound             = -30518,
  kFBCnoSearchSession           = -30519,
  kFBCindexingCanceled          = -30520,
  kFBCaccessCanceled            = -30521,
  kFBCindexFileDestroyed        = -30522,
  kFBCindexNotAvailable         = -30523,
  kFBCsearchFailed              = -30524,
  kFBCsomeFilesNotIndexed       = -30525,
  kFBCillegalSessionChange      = -30526, /*tried to add/remove vols to a session*/
                                        /*that has hits*/
  kFBCanalysisNotAvailable      = -30527,
  kFBCbadIndexFileVersion       = -30528,
  kFBCsummarizationCanceled     = -30529,
  kFBCindexDiskIOFailed         = -30530,
  kFBCbadSearchSession          = -30531,
  kFBCnoSuchHit                 = -30532
};


enum {
/* QuickTime VR Errors */
  notAQTVRMovieErr              = -30540,
  constraintReachedErr          = -30541,
  callNotSupportedByNodeErr     = -30542,
  selectorNotSupportedByNodeErr = -30543,
  invalidNodeIDErr              = -30544,
  invalidViewStateErr           = -30545,
  timeNotInViewErr              = -30546,
  propertyNotSupportedByNodeErr = -30547,
  settingNotSupportedByNodeErr  = -30548,
  limitReachedErr               = -30549,
  invalidNodeFormatErr          = -30550,
  invalidHotSpotIDErr           = -30551,
  noMemoryNodeFailedInitialize  = -30552,
  streamingNodeNotReadyErr      = -30553,
  qtvrLibraryLoadErr            = -30554,
  qtvrUninitialized             = -30555
};


enum {
/* Appearance Manager Error Codes */
  themeInvalidBrushErr          = -30560, /* pattern index invalid */
  themeProcessRegisteredErr     = -30561,
  themeProcessNotRegisteredErr  = -30562,
  themeBadTextColorErr          = -30563,
  themeHasNoAccentsErr          = -30564,
  themeBadCursorIndexErr        = -30565,
  themeScriptFontNotFoundErr    = -30566, /* theme font requested for uninstalled script system */
  themeMonitorDepthNotSupportedErr = -30567 /* theme not supported at monitor depth */
};


enum {
 /* Control Manager Error Codes */
 errMessageNotSupported        = -30580,
  errDataNotSupported           = -30581,
  errControlDoesntSupportFocus  = -30582,
  errUnknownControl             = -30584,
  errCouldntSetFocus            = -30585,
  errNoRootControl              = -30586,
  errRootAlreadyExists          = -30587,
  errInvalidPartCode            = -30588,
  errControlsAlreadyExist       = -30589,
  errControlIsNotEmbedder       = -30590,
  errDataSizeMismatch           = -30591,
  errControlHiddenOrDisabled    = -30592,
  errCantEmbedIntoSelf          = -30594,
  errCantEmbedRoot              = -30595,
  errItemNotControl             = -30596,
  controlInvalidDataVersionErr  = -30597,
  controlPropertyInvalid        = -5603,
  controlPropertyNotFoundErr    = -5604,
  controlHandleInvalidErr       = -30599
};




enum {
/* URLAccess Error Codes */
  kURLInvalidURLReferenceError  = -30770,
  kURLProgressAlreadyDisplayedError = -30771,
  kURLDestinationExistsError    = -30772,
  kURLInvalidURLError           = -30773,
  kURLUnsupportedSchemeError    = -30774,
  kURLServerBusyError           = -30775,
  kURLAuthenticationError       = -30776,
  kURLPropertyNotYetKnownError  = -30777,
  kURLUnknownPropertyError      = -30778,
  kURLPropertyBufferTooSmallError = -30779,
  kURLUnsettablePropertyError   = -30780,
  kURLInvalidCallError          = -30781,
  kURLFileEmptyError            = -30783,
  kURLExtensionFailureError     = -30785,



( run in 2.217 seconds using v1.01-cache-2.11-cpan-437f7b0c052 )