Skip to content

Commit

Permalink
Refs 20820: Make exception private
Browse files Browse the repository at this point in the history
Signed-off-by: elianalf <62831776+elianalf@users.noreply.github.com>
  • Loading branch information
elianalf committed May 16, 2024
1 parent 9e27899 commit fc82ae5
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions include/fastdds/rtps/security/logging/Logging.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@
#include <iomanip>

#include <fastdds/dds/log/Log.hpp>
#include <fastdds/rtps/security/logging/LogOptions.h>
#include <fastdds/rtps/security/logging/BuiltinLoggingType.h>
#include <fastdds/rtps/security/exceptions/SecurityException.h>
#include <fastdds/rtps/common/Guid.h>
#include <fastdds/rtps/security/logging/BuiltinLoggingType.h>
#include <fastdds/rtps/security/logging/LogOptions.h>
#include <rtps/security/exceptions/SecurityException.h>

namespace eprosima {
namespace fastrtps {
Expand Down
2 changes: 1 addition & 1 deletion include/fastdds/rtps/security/logging/LoggingLevel.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
#ifndef _FASTDDS_RTPS_SECURITY_LOGGING_LOGGINGLEVEL_H_
#define _FASTDDS_RTPS_SECURITY_LOGGING_LOGGINGLEVEL_H_

#include <fastdds/rtps/security/exceptions/SecurityException.h>
#include <rtps/security/exceptions/SecurityException.h>

namespace eprosima {
namespace fastrtps {
Expand Down
2 changes: 1 addition & 1 deletion src/cpp/rtps/security/authentication/Authentication.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@
#include <fastdds/rtps/common/CDRMessage_t.h>
#include <fastdds/rtps/common/Guid.h>
#include <fastdds/rtps/common/Token.h>
#include <fastdds/rtps/security/exceptions/SecurityException.h>
#include <rtps/security/authentication/Handshake.h>
#include <rtps/security/common/Handle.h>
#include <rtps/security/common/SharedSecretHandle.h>
#include <rtps/security/exceptions/SecurityException.h>

#include <cstdint>

Expand Down
2 changes: 1 addition & 1 deletion src/cpp/rtps/security/cryptography/CryptoTypes.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@
#define _FASTDDS_RTPS_SECURITY_CRYPTOGRAPHY_CRYPTOTYPES_H_

#include <fastdds/rtps/common/Token.h>
#include <fastdds/rtps/security/exceptions/SecurityException.h>
#include <rtps/security/common/Handle.h>
#include <rtps/security/common/SharedSecretHandle.h>
#include <rtps/security/exceptions/SecurityException.h>

#include <array>

Expand Down
2 changes: 1 addition & 1 deletion src/cpp/rtps/security/exceptions/SecurityException.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#include <fastdds/rtps/security/exceptions/SecurityException.h>
#include <rtps/security/exceptions/SecurityException.h>

using namespace eprosima::fastrtps::rtps::security;

Expand Down
4 changes: 2 additions & 2 deletions src/cpp/security/accesscontrol/Permissions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@
#include <openssl/err.h>
#include <openssl/obj_mac.h>


#include <fastdds/rtps/attributes/RTPSParticipantAttributes.h>
#include <fastdds/rtps/builtin/data/ParticipantProxyData.h>
#include <fastdds/rtps/builtin/data/ReaderProxyData.h>
#include <fastdds/rtps/builtin/data/WriterProxyData.h>
#include <fastdds/rtps/security/exceptions/SecurityException.h>

#include <rtps/security/exceptions/SecurityException.h>
#include <security/accesscontrol/AccessPermissionsHandle.h>
#include <security/accesscontrol/DistinguishedName.h>
#include <security/accesscontrol/GovernanceParser.h>
Expand Down
2 changes: 1 addition & 1 deletion src/cpp/security/artifact_providers/FileProvider.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
#include <openssl/err.h>
#include <openssl/ssl.h>

#include <fastdds/rtps/security/exceptions/SecurityException.h>
#include <rtps/security/exceptions/SecurityException.h>


namespace eprosima {
Expand Down
2 changes: 1 addition & 1 deletion src/cpp/security/artifact_providers/Pkcs11Provider.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
#include <openssl/err.h>
#include <openssl/ssl.h>

#include <fastdds/rtps/security/exceptions/SecurityException.h>
#include <rtps/security/exceptions/SecurityException.h>

namespace eprosima {
namespace fastrtps {
Expand Down

0 comments on commit fc82ae5

Please sign in to comment.