Skip to content

Commit

Permalink
Synchronize built-in Slice files with 'icerpc-slice' repository.
Browse files Browse the repository at this point in the history
  • Loading branch information
InsertCreativityHere committed Jul 16, 2024
2 parents b9b17f6 + a12f71f commit 7a2b306
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion slice/.github/workflows/spellcheck.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 'Check spelling'
name: "Check spelling"

on:
push:
Expand Down
3 changes: 3 additions & 0 deletions slice/.vscode/cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,8 @@
"dictionaries": [
"softwareTerms",
"en_US"
],
"enableFiletypes": [
"slice"
]
}
1 change: 1 addition & 0 deletions slice/.vscode/extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@
"recommendations": [
"EditorConfig.EditorConfig",
"streetsidesoftware.code-spell-checker",
"ZeroCInc.slice"
]
}
9 changes: 5 additions & 4 deletions slice/IceRpc/Internal/IceDefinitions.slice
Original file line number Diff line number Diff line change
Expand Up @@ -97,19 +97,20 @@ enum ReplyStatus {
/// The target object does not exist.
ObjectNotExistException = 2

/// The target object does not support the facet.
/// The target object does not support the facet (treated like ObjectNotExistException by IceRPC).
FacetNotExistException = 3

/// The target object does not support the operation.
OperationNotExistException = 4

/// The reply message carries an unknown Ice local exception.
/// The dispatch failed with an Ice local exception (not applicable with IceRPC).
UnknownLocalException = 5

/// The reply message carries an unknown Ice user exception.
/// The dispatch failed with a Slice user exception that does not conform to the exception specification of the
/// operation (not applicable with IceRPC).
UnknownUserException = 6

/// The reply message carries an unknown exception.
/// The dispatch failed with some other exception.
UnknownException = 7
}

Expand Down

0 comments on commit 7a2b306

Please sign in to comment.