Ice 3.6 Slice API Reference
All Classes Interfaces Structs Exceptions Modules Files Operations Constants Sequences Dictionaries Enumerations Enumerator Pages
Exception.ice
Go to the documentation of this file.
1 // **********************************************************************
2 //
3 // Copyright (c) 2003-2018 ZeroC, Inc. All rights reserved.
4 //
5 // This copy of Ice is licensed to you under the terms described in the
6 // ICE_LICENSE file included in this distribution.
7 //
8 // **********************************************************************
9 
10 #pragma once
11 
12 [["cpp:header-ext:h", "objc:header-dir:objc"]]
13 
14 module Freeze
15 {
16 
17 local interface Transaction;
18 
27 ["cpp:ice_print"]
28 local exception DatabaseException
29 {
35  string message;
36 };
37 
44 ["cpp:ice_print"]
45 local exception NotFoundException extends DatabaseException
46 {
47 };
48 
55 ["cpp:ice_print"]
56 local exception DeadlockException extends DatabaseException
57 {
64 };
65 
72 local exception InvalidPositionException
73 {
74 };
75 
81 ["cpp:ice_print"]
82 local exception IndexNotFoundException
83 {
89  string mapName;
90 
96  string indexName;
97 };
98 
99 };
100 
A Freeze database exception, indicating that a database record could not be found.
Definition: Exception.ice:45
string mapName
The name of the map in which the index could not be found.
Definition: Exception.ice:89
This Freeze Iterator is not on a valid position, for example this position has been erased...
Definition: Exception.ice:72
A Freeze database exception.
Definition: Exception.ice:28
A Freeze database deadlock exception.
Definition: Exception.ice:56
Transaction tx
The transaction in which the deadlock occurred.
Definition: Exception.ice:63
Exception raised when Freeze fails to locate an index.
Definition: Exception.ice:82
A transaction.
Definition: Transaction.ice:27
string message
A message describing the reason for the exception.
Definition: Exception.ice:35
string indexName
The name of the index.
Definition: Exception.ice:96
Freeze provides automatic persistence for Ice servants.
Definition: BackgroundSaveEvictor.ice:16