Skip to content

Commit 5c2e650

Browse files
Merge pull request #149 from dynamsoft-docs/preview
update to internal commit e5c90089
2 parents fca8550 + 44e714b commit 5c2e650

File tree

8 files changed

+75
-0
lines changed

8 files changed

+75
-0
lines changed

_includes/sidelist-programming/programming-java.html

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818
<li><a>Classes</a>
1919
<ul>
2020
<li><a href="{{ site.dcvb_java_api }}capture-vision-router/auxiliary-classes/buffered-items-manager.html" class="otherLinkColour">BufferedItemsManager</a></li>
21+
<li><a href="{{ site.dcvb_java_api }}capture-vision-router/capture-vision-error.html" class="otherLinkColour">CaptureVisionError</a></li>
22+
<li><a href="{{ site.dcvb_java_api }}capture-vision-router/capture-vision-execption.html" class="otherLinkColour">CaptureVisionException</a></li>
2123
<li><a href="{{ site.dcvb_java_api }}capture-vision-router/auxiliary-classes/capture-vision-router-module.html" class="otherLinkColour">CaptureVisionRouterModule</a></li>
2224
<li><a href="{{ site.dcvb_java_api }}capture-vision-router/auxiliary-classes/captured-result-filter.html" class="otherLinkColour">CapturedResultFilter</a></li>
2325
<li><a href="{{ site.dcvb_java_api }}capture-vision-router/auxiliary-classes/captured-result-receiver.html" class="otherLinkColour">CapturedResultReceiver</a></li>
@@ -48,6 +50,7 @@
4850
<ul>
4951
<li><a href="{{ site.dbr_java_api }}aztec-details.html" class="otherLinkColour">AztecDetails</a></li>
5052
<li><a href="{{ site.dbr_java_api }}barcode-details.html" class="otherLinkColour">BarcodeDetails</a></li>
53+
<li><a href="{{ site.dbr_java_api }}barcode-reader-exception.html" class="otherLinkColour">BarcodeReaderException</a></li>
5154
<li><a href="{{ site.dbr_java_api }}barcode-reader-module.html" class="otherLinkColour">BarcodeReaderModule</a></li>
5255
<li><a href="{{ site.dbr_java_api }}barcode-result-item.html" class="otherLinkColour">BarcodeResultItem</a></li>
5356
<li><a href="{{ site.dbr_java_api }}candidate-barcode-zone.html" class="otherLinkColour">CandidateBarcodeZone</a></li>
@@ -91,6 +94,8 @@
9194
<li><a href="{{ site.dcvb_java_api }}core/intermediate-results/colour-image-unit.html" class="otherLinkColour">ColourImageUnit</a></li>
9295
<li><a href="{{ site.dcvb_java_api }}core/intermediate-results/contours-unit.html" class="otherLinkColour">ContoursUnit</a></li>
9396
<li><a href="{{ site.dcvb_java_api }}core/basic-classes/contour.html" class="otherLinkColour">Contour</a></li>
97+
<li><a href="{{ site.dcvb_java_api }}core/core-error.html" class="otherLinkColour">CoreError</a></li>
98+
<li><a href="{{ site.dcvb_java_api }}core/core-exception.html" class="otherLinkColour">CoreException</a></li>
9499
<li><a href="{{ site.dcvb_java_api }}core/basic-classes/core-module.html" class="otherLinkColour">CoreModule</a></li>
95100
<li><a href="{{ site.dcvb_java_api }}core/basic-classes/corner.html" class="otherLinkColour">Corner</a></li>
96101
<li><a href="{{ site.dcvb_java_api }}core/basic-classes/edge.html" class="otherLinkColour">Edge</a></li>
@@ -168,6 +173,7 @@
168173
<li><a href="{{ site.dcvb_java_api }}utility/image-drawer.html" class="otherLinkColour">ImageDrawer</a></li>
169174
<li><a href="{{ site.dcvb_java_api }}utility/multi-frame-result-cross-filter.html" class="otherLinkColour">MultiFrameResultCrossFilter</a></li>
170175
<li><a href="{{ site.dcvb_java_api }}utility/proactive-image-source-adapter.html" class="otherLinkColour">ProactiveImageSourceAdapter</a></li>
176+
<li><a href="{{ site.dcvb_java_api }}utility/utility-exception.html" class="otherLinkColour">UtilityException</a></li>
171177
<li><a href="{{ site.dcvb_java_api }}utility/utility-module.html" class="otherLinkColour">UtilityModule</a></li>
172178
</ul>
173179
</li>
@@ -180,6 +186,8 @@
180186
</li>
181187
<li><a>DynamsoftLicense</a>
182188
<ul>
189+
<li><a href="{{ site.dcvb_java_api }}license/license-error.html" class="otherLinkColour">LicenseError</a></li>
190+
<li><a href="{{ site.dcvb_java_api }}license/license-exception.html" class="otherLinkColour">LicenseException</a></li>
183191
<li><a href="{{ site.dcvb_java_api }}license/license-manager.html" class="otherLinkColour">LicenseManager</a></li>
184192
<li><a href="{{ site.dcvb_java_api }}license/license-module.html" class="otherLinkColour">LicenseModule</a></li>
185193
</ul>
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
---
2+
layout: default-layout
3+
title: BarcodeReaderException Class - Dynamsoft Barcode Reader Module Java Edition API Reference
4+
description: Definition of BarcodeReaderException class in Dynamsoft Barcode Reader Module Java Edition.
5+
keywords: barcode reader module, java
6+
needAutoGenerateSidebar: true
7+
needGenerateH3Content: true
8+
---
9+
10+
# BarcodeReaderException
11+
12+
The `BarcodeReaderException` class represents an exception that can be thrown by the Dynamsoft Barcode Reader module. This class extends [`CoreException`]({{ site.dcvb_java_api }}core/core-exception.html) and provides specific error handling for barcode reader operations.
13+
14+
## Definition
15+
16+
*Package:* com.dynamsoft.dbr
17+
18+
```java
19+
public class BarcodeReaderException extends CoreException
20+
```
21+
22+
## Inheritance
23+
24+
`BarcodeReaderException` -> [`CoreException`]({{ site.dcvb_java_api }}core/core-exception.html)
25+
26+
## Inherited Members
27+
28+
Since `BarcodeReaderException` extends [`CoreException`]({{ site.dcvb_java_api }}core/core-exception.html), it inherits all the properties and methods from the parent class, including:
29+
30+
- `getErrorCode()` - Returns the error code.
31+
- `getErrorString()` - Returns the error string.
32+

programming/java/api-reference/barcode-result-item.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -209,6 +209,10 @@ public void setLocation(Quadrilateral location) throws BarcodeReaderException
209209

210210
`BarcodeReaderException`: Thrown when an error occurs during the operation.
211211

212+
**See Also**
213+
214+
[BarcodeReaderException]({{ site.dbr_java_api }}barcode-reader-exception.html)
215+
212216
### setText
213217

214218
Sets the text of the decoded barcode.

programming/java/api-reference/candidate-barcode-zones-unit.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,10 @@ Returns the candidate barcode zone at the specified index.
6363

6464
`BarcodeReaderException`: Thrown when an error occurs during the operation.
6565

66+
**See Also**
67+
68+
[BarcodeReaderException]({{ site.dbr_java_api }}barcode-reader-exception.html)
69+
6670
### getCandidateBarcodeZones
6771

6872
Gets all candidate barcode zones.
@@ -91,6 +95,10 @@ public void addCandidateBarcodeZone(CandidateBarcodeZone candidateBarcodeZone) t
9195

9296
`BarcodeReaderException`: Thrown when an error occurs during the operation.
9397

98+
**See Also**
99+
100+
[BarcodeReaderException]({{ site.dbr_java_api }}barcode-reader-exception.html)
101+
94102
### removeAllCandidateBarcodeZones
95103

96104
Removes all the candidate barcode zones.
@@ -114,3 +122,8 @@ public void removeCandidateBarcodeZone(int index) throws BarcodeReaderException
114122
**Exceptions**
115123

116124
`BarcodeReaderException`: Thrown when an error occurs during the operation.
125+
126+
**See Also**
127+
128+
[BarcodeReaderException]({{ site.dbr_java_api }}barcode-reader-exception.html)
129+

programming/java/api-reference/decoded-barcodes-unit.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,8 @@ Returns the `DecodedBarcodeElement` object at the specified index.
6262

6363
**See Also**
6464

65+
[BarcodeReaderException]({{ site.dbr_java_api }}barcode-reader-exception.html)
66+
6567
[DecodedBarcodeElement]({{ site.dbr_java_api }}decoded-barcode-element.html)
6668

6769
### getDecodedBarcodes
@@ -111,4 +113,6 @@ public void setDecodedBarcode(DecodedBarcodeElement element, double[] matrixToOr
111113

112114
**See Also**
113115

116+
[BarcodeReaderException]({{ site.dbr_java_api }}barcode-reader-exception.html)
117+
114118
[DecodedBarcodeElement]({{ site.dbr_java_api }}decoded-barcode-element.html)

programming/java/api-reference/deformation-resisted-barcode-image-unit.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,6 @@ public void setDeformationResistedBarcode(DeformationResistedBarcode barcode, do
6464

6565
**See Also**
6666

67+
[BarcodeReaderException]({{ site.dbr_java_api }}barcode-reader-exception.html)
68+
6769
[DeformationResistedBarcode]({{ site.dbr_java_api }}deformation-resisted-barcode.html)

programming/java/api-reference/localized-barcodes-unit.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,8 @@ public void addLocalizedBarcode(LocalizedBarcodeElement localizedBarcode, double
5353

5454
**See Also**
5555

56+
[BarcodeReaderException]({{ site.dbr_java_api }}barcode-reader-exception.html)
57+
5658
[LocalizedBarcodeElement]({{ site.dbr_java_api }}localized-barcode-element.html)
5759

5860
### getCount
@@ -89,6 +91,8 @@ Returns a `LocalizedBarcodeElement` object at the specified index.
8991

9092
**See Also**
9193

94+
[BarcodeReaderException]({{ site.dbr_java_api }}barcode-reader-exception.html)
95+
9296
[LocalizedBarcodeElement]({{ site.dbr_java_api }}localized-barcode-element.html)
9397

9498
### getLocalizedBarcodes
@@ -131,6 +135,10 @@ public void removeLocalizedBarcode(int index) throws BarcodeReaderException
131135

132136
`BarcodeReaderException` If an error occurs while removing the localized barcode.
133137

138+
**See Also**
139+
140+
[BarcodeReaderException]({{ site.dbr_java_api }}barcode-reader-exception.html)
141+
134142
### setLocalizedBarcode
135143

136144
Sets the localized barcode at the specified index.
@@ -156,5 +164,7 @@ public void setLocalizedBarcode(int index, LocalizedBarcodeElement localizedBarc
156164

157165
**See Also**
158166

167+
[BarcodeReaderException]({{ site.dbr_java_api }}barcode-reader-exception.html)
168+
159169
[LocalizedBarcodeElement]({{ site.dbr_java_api }}localized-barcode-element.html)
160170

programming/java/api-reference/scaled-barcode-image-unit.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,4 +59,6 @@ public void setImageData(ImageData imgData) throws BarcodeReaderException
5959

6060
**See Also**
6161

62+
[BarcodeReaderException]({{ site.dbr_java_api }}barcode-reader-exception.html)
63+
6264
[ImageData]({{ site.dcvb_java_api }}core/basic-classes/image-data.html)

0 commit comments

Comments
 (0)