You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
811 B
33 lines
811 B
/* Copyright 2020 Siemens Digital Industries Software
|
|
#===============================================================================
|
|
# Copyright 2019.
|
|
# Siemens Product Lifecycle Management Software Inc.
|
|
# All Rights Reserved.
|
|
#===============================================================================
|
|
# Copyright 2020 Siemens Digital Industries Software
|
|
*/
|
|
/**
|
|
@file
|
|
EBM0ENTERPRISEBOM Master Error Codes Declaration
|
|
*/
|
|
|
|
#ifndef EBM0ERRORS_H
|
|
#define EBM0ERRORS_H
|
|
|
|
|
|
#include <common/emh_const.h>
|
|
|
|
/**
|
|
@defgroup EBMENT_ERRORS Errors
|
|
@ingroup EBMENT
|
|
@{
|
|
*/
|
|
|
|
/**
|
|
* An internal error has occurred. Report this error to your system administrator.
|
|
*/
|
|
#define EBM0ENTERPRISEBOM_internal_error (EMH_EBM0ENTERPRISEBOM_error_base + 1)
|
|
|
|
/** @} */
|
|
#endif
|