We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c98a9ba commit 07b8abdCopy full SHA for 07b8abd
utbot-framework/src/main/kotlin/org/utbot/engine/ArtificialErrors.kt
@@ -0,0 +1,18 @@
1
+package org.utbot.engine
2
+
3
+/**
4
+ * Represents an error that may be detected or not
5
+ * during analysis in accordance with custom settings.
6
+ *
7
+ * Usually execution may be continued somehow after such error,
8
+ * but the result may be different from basic expectations.
9
+ */
10
+sealed class ArtificialError(message: String): Error(message)
11
12
13
+ * Represents overflow detection errors in symbolic engine,
14
+ * if a mode to detect them is turned on.
15
16
+ * See [TraversalContext.intOverflowCheck] for more details.
17
18
+class OverflowDetectionError(message: String): ArtificialError(message)
0 commit comments