Skip to content

Commit

Permalink
HEAD:(zeroc-ice/ice@71df010892) Add JavaScript style checker to CI (z…
Browse files Browse the repository at this point in the history
  • Loading branch information
pepone authored and temp committed Jul 24, 2024
1 parent 2f827ef commit c74f3e1
Show file tree
Hide file tree
Showing 1,495 changed files with 2,029 additions and 2,029 deletions.
8 changes: 4 additions & 4 deletions slice2cpp/cpp/src/IceGrid/Internal.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1700,11 +1700,11 @@ IceGrid::InternalRegistryPrx::_iceI_registerNode(const ::std::shared_ptr<::IceIn
{
ex.ice_throw();
}
catch(const NodeActiveException&)
catch(const PermissionDeniedException&)
{
throw;
}
catch(const PermissionDeniedException&)
catch(const NodeActiveException&)
{
throw;
}
Expand Down Expand Up @@ -1750,11 +1750,11 @@ IceGrid::InternalRegistryPrx::_iceI_registerReplica(const ::std::shared_ptr<::Ic
{
ex.ice_throw();
}
catch(const ReplicaActiveException&)
catch(const PermissionDeniedException&)
{
throw;
}
catch(const PermissionDeniedException&)
catch(const ReplicaActiveException&)
{
throw;
}
Expand Down
48 changes: 24 additions & 24 deletions slice2cpp/slice/IceGrid/Admin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3206,19 +3206,19 @@ IceGrid::AdminSessionPrx::_iceI_openServerLog(const ::std::shared_ptr<::IceInter
{
ex.ice_throw();
}
catch(const ServerNotExistException&)
catch(const FileNotAvailableException&)
{
throw;
}
catch(const DeploymentException&)
catch(const ServerNotExistException&)
{
throw;
}
catch(const NodeUnreachableException&)
catch(const DeploymentException&)
{
throw;
}
catch(const FileNotAvailableException&)
catch(const NodeUnreachableException&)
{
throw;
}
Expand Down Expand Up @@ -3263,19 +3263,19 @@ IceGrid::AdminSessionPrx::_iceI_openServerStdErr(const ::std::shared_ptr<::IceIn
{
ex.ice_throw();
}
catch(const ServerNotExistException&)
catch(const FileNotAvailableException&)
{
throw;
}
catch(const DeploymentException&)
catch(const ServerNotExistException&)
{
throw;
}
catch(const NodeUnreachableException&)
catch(const DeploymentException&)
{
throw;
}
catch(const FileNotAvailableException&)
catch(const NodeUnreachableException&)
{
throw;
}
Expand Down Expand Up @@ -3320,19 +3320,19 @@ IceGrid::AdminSessionPrx::_iceI_openServerStdOut(const ::std::shared_ptr<::IceIn
{
ex.ice_throw();
}
catch(const ServerNotExistException&)
catch(const FileNotAvailableException&)
{
throw;
}
catch(const DeploymentException&)
catch(const ServerNotExistException&)
{
throw;
}
catch(const NodeUnreachableException&)
catch(const DeploymentException&)
{
throw;
}
catch(const FileNotAvailableException&)
catch(const NodeUnreachableException&)
{
throw;
}
Expand Down Expand Up @@ -3377,15 +3377,15 @@ IceGrid::AdminSessionPrx::_iceI_openNodeStdErr(const ::std::shared_ptr<::IceInte
{
ex.ice_throw();
}
catch(const NodeNotExistException&)
catch(const FileNotAvailableException&)
{
throw;
}
catch(const NodeUnreachableException&)
catch(const NodeNotExistException&)
{
throw;
}
catch(const FileNotAvailableException&)
catch(const NodeUnreachableException&)
{
throw;
}
Expand Down Expand Up @@ -3430,15 +3430,15 @@ IceGrid::AdminSessionPrx::_iceI_openNodeStdOut(const ::std::shared_ptr<::IceInte
{
ex.ice_throw();
}
catch(const NodeNotExistException&)
catch(const FileNotAvailableException&)
{
throw;
}
catch(const NodeUnreachableException&)
catch(const NodeNotExistException&)
{
throw;
}
catch(const FileNotAvailableException&)
catch(const NodeUnreachableException&)
{
throw;
}
Expand Down Expand Up @@ -3483,15 +3483,15 @@ IceGrid::AdminSessionPrx::_iceI_openRegistryStdErr(const ::std::shared_ptr<::Ice
{
ex.ice_throw();
}
catch(const RegistryNotExistException&)
catch(const FileNotAvailableException&)
{
throw;
}
catch(const RegistryUnreachableException&)
catch(const RegistryNotExistException&)
{
throw;
}
catch(const FileNotAvailableException&)
catch(const RegistryUnreachableException&)
{
throw;
}
Expand Down Expand Up @@ -3536,15 +3536,15 @@ IceGrid::AdminSessionPrx::_iceI_openRegistryStdOut(const ::std::shared_ptr<::Ice
{
ex.ice_throw();
}
catch(const RegistryNotExistException&)
catch(const FileNotAvailableException&)
{
throw;
}
catch(const RegistryUnreachableException&)
catch(const RegistryNotExistException&)
{
throw;
}
catch(const FileNotAvailableException&)
catch(const RegistryUnreachableException&)
{
throw;
}
Expand Down
8 changes: 4 additions & 4 deletions slice2cs/cpp/src/IceGrid/Internal.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6305,11 +6305,11 @@ private void _iceI_registerNode(InternalNodeInfo? iceP_info, NodePrx? iceP_prx,
{
throw ex;
}
catch(PermissionDeniedException)
catch(NodeActiveException)
{
throw;
}
catch(NodeActiveException)
catch(PermissionDeniedException)
{
throw;
}
Expand Down Expand Up @@ -6361,11 +6361,11 @@ private void _iceI_registerReplica(InternalReplicaInfo? iceP_info, InternalRegis
{
throw ex;
}
catch(PermissionDeniedException)
catch(ReplicaActiveException)
{
throw;
}
catch(ReplicaActiveException)
catch(PermissionDeniedException)
{
throw;
}
Expand Down
Loading

0 comments on commit c74f3e1

Please sign in to comment.