File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
objectbox-java/src/main/java/io/objectbox/exception Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2017 ObjectBox Ltd. All rights reserved.
2
+ * Copyright 2017-2024 ObjectBox Ltd. All rights reserved.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
17
17
package io .objectbox .exception ;
18
18
19
19
/**
20
- * Thrown when applying a transaction (e.g. putting an object) would exceed the
21
- * {@link io.objectbox.BoxStoreBuilder#maxSizeInKByte(long) maxSizeInKByte} configured for the store.
20
+ * Thrown when applying a database operation would exceed the (default)
21
+ * {@link io.objectbox.BoxStoreBuilder#maxSizeInKByte(long) maxSizeInKByte} configured for the Store.
22
+ * <p>
23
+ * This can occur for operations like when an Object is {@link io.objectbox.Box#put(Object) put}, at the point when the
24
+ * (internal) transaction is committed. Or when the Store is opened with a max size smaller than the existing database.
22
25
*/
23
26
public class DbFullException extends DbException {
24
27
public DbFullException (String message ) {
You can’t perform that action at this time.
0 commit comments