E_INIT_CONFLICT — Project initialization conflict
Project initialization would overwrite or conflict with an existing path.
Retry after correcting the command or call arguments.
Search the exact code from an error. The installed CLI provides the same catalog with clipasm explain CODE.
CLI arguments, initialization, and inspection output
E_INIT_CONFLICT — Project initialization conflictProject initialization would overwrite or conflict with an existing path.
Retry after correcting the command or call arguments.
E_INIT_IO — Project initialization I/O failureClipAsm could not create, inspect, or write a file needed for project initialization.
Retry after repairing the environment or media inputs.
E_INIT_PATH — Invalid initialization pathThe requested project initialization target is not a valid safe destination.
Retry after correcting the command or call arguments.
E_INSPECTION_EXISTS — Inspection destination existsAn inspection command would overwrite an existing destination without explicit permission.
Retry after correcting the command or call arguments.
E_INSPECTION_IO — Inspection output I/O failureClipAsm could not create or write the requested inspection output.
Retry after repairing the environment or media inputs.
E_INVALID_CLI_BINDING — Invalid command-line bindingA command-line root binding does not use the name or value shape required by the source.
Retry after correcting the command or call arguments.
E_PROJECT_IO — Project manifest I/O failureClipAsm could not discover, inspect, or read a project manifest path.
Retry after repairing the environment or media inputs.
E_PROJECT_MANIFEST — Invalid project manifestA clipasm.toml file is malformed or contains an unsupported project setting.
Retry after correcting the project manifest or project selection.
E_PROJECT_NOT_FOUND — Project manifest not foundA command omitted its source path, but no clipasm.toml file was found in the current directory or its parents.
Retry after correcting the project manifest or project selection.
E_UNKNOWN_BUILTIN_PROGRAM — Unknown built-in programA built-in program lookup requested a name that is not registered with ClipAsm.
Retry after correcting the command or call arguments.
E_UNKNOWN_DIAGNOSTIC_CODE — Unknown diagnostic codeThe explain command received a code that is not in ClipAsm's built-in diagnostic catalog.
Retry after correcting the command or call arguments.
syntax, source layout, literals, and project configuration
E_BODY_NESTING_DEPTH — Body nesting limit exceededNested program bodies exceeded the parser's supported structural depth.
Retry after correcting the source.
E_DECLARATION_AFTER_STATEMENT — Declaration after statementA declaration appears after executable statements, where the source grammar no longer permits it.
Retry after correcting the source.
E_DUPLICATE_CONFIG — Duplicate configuration blockA source file declares more than one top-level configuration block.
Retry after correcting the source.
E_EXPECTED_STATEMENT_END — Expected statement endThe parser expected a newline or closing delimiter after a complete statement.
Retry after correcting the source.
E_EXPECTED_TOKEN — Expected tokenThe parser did not find the required token at the highlighted source location.
Retry after correcting the source.
E_INVALID_AUDIO_SPEC — Invalid audio specificationAn authored Audio declaration contains an invalid rate, channel count, duration, or related fact.
Retry after correcting the source.
E_INVALID_DURATION — Invalid durationA duration literal or computed duration is malformed, negative, or outside the supported range.
Retry after correcting the source.
E_INVALID_ESCAPE — Invalid string escapeA string literal contains an escape sequence that ClipAsm does not recognize.
Retry after correcting the source.
E_INVALID_NUMBER — Invalid numberA numeric literal cannot be represented as ClipAsm's exact number type.
Retry after correcting the source.
E_INVALID_STATEMENT — Invalid statementA parsed expression or declaration appears where the language requires an executable statement.
Retry after correcting the source.
E_INVALID_TOKEN — Invalid tokenThe lexer encountered a character sequence that cannot begin a ClipAsm token.
Retry after correcting the source.
E_INVALID_VERSION — Invalid language versionThe source version declaration is malformed or does not contain a valid version number.
Retry after correcting the source.
E_INVALID_VIDEO_SPEC — Invalid video specificationAn authored Video declaration contains invalid dimensions, frame rate, duration, or related facts.
Retry after correcting the source.
E_MISSING_KEYWORD_VALUES — Missing keyword choicesAn authored Keyword parameter declaration does not list any allowed values.
Retry after correcting the source.
E_MISSING_VERSION — Missing language versionA ClipAsm source file does not begin with the required language version declaration.
Retry after correcting the source.
E_NUMBER_TOO_LARGE — Number is too largeA numeric value exceeds the exact integer range supported by the operation that consumes it.
Retry after correcting the source.
E_SOURCE_EXTENSION — Invalid source extensionA source path does not use the file extension required for a ClipAsm source.
Retry after correcting the command or call arguments.
E_SYNTAX_NESTING_DEPTH — Syntax nesting limit exceededNested expressions or delimiters exceed the parser's supported syntax depth.
Retry after correcting the source.
E_UNEXPECTED_SUGAR_ARGUMENT — Unexpected clip argumentA `clip` form contains an argument, but `clip` accepts only a body and an optional type argument.
Retry after correcting the source.
E_UNKNOWN_AUDIO_FIELD — Unknown audio fieldAn Audio declaration contains a field name that ClipAsm does not recognize.
Retry after correcting the source.
E_UNKNOWN_CONFIG_FIELD — Unknown configuration fieldA configuration block contains a field name that this ClipAsm version does not recognize.
Retry after correcting the source.
E_UNKNOWN_PARAMETER_TYPE — Unknown parameter typeAn authored program parameter declaration names a scalar type the language does not recognize.
Retry after correcting the source.
E_UNKNOWN_VALUE_TYPE — Unknown value typeAn authored input or output declaration names a graph value type other than Video or Audio.
Retry after correcting the source.
E_UNKNOWN_VIDEO_FIELD — Unknown video fieldA Video declaration contains a field name that ClipAsm does not recognize.
Retry after correcting the source.
E_UNSUPPORTED_VERSION — Unsupported language versionThe source requests a ClipAsm language version this binary does not support.
Retry after correcting the source.
E_UNTERMINATED_BLOCK — Unterminated blockThe source ended before a program, stack, or clip body received its closing delimiter.
Retry after correcting the source.
E_UNTERMINATED_CONFIG — Unterminated configuration blockThe source ended before the configuration block received its closing delimiter.
Retry after correcting the source.
E_UNTERMINATED_EXTERNAL — Unterminated external declarationThe source ended before an external-program declaration received its closing delimiter.
Retry after correcting the source.
E_UNTERMINATED_STRING — Unterminated stringThe source ended before a string literal received its closing quote.
Retry after correcting the source.
imports, declarations, names, and external definitions
E_DEPENDENCY_CYCLE — Dependency cycleProgram or value dependencies form a cycle that cannot be evaluated in order.
Retry after correcting the source.
E_DUPLICATE_DECLARATION_FIELD — Duplicate declaration fieldA declaration repeats a field that may be specified only once.
Retry after correcting the source.
E_DUPLICATE_EXTERNAL — Duplicate external declarationA source file declares the same external program name more than once.
Retry after correcting the source.
E_DUPLICATE_NAME — Duplicate nameTwo declarations introduce the same name in one namespace.
Retry after correcting the source.
E_DUPLICATE_PROGRAM_IMPORT — Duplicate program importThe same program is imported more than once into a declaration.
Retry after correcting the source.
E_EXTERNAL_WITH_BODY — External program cannot have a bodyAn authored external-program declaration uses a caller body, which external programs do not support.
Retry after correcting the source.
E_EXTERNAL_WITH_IMPORTS — External program cannot import programsAn authored external-program declaration contains imports, which are not supported there.
Retry after correcting the source.
E_IMPORTED_OUTPUT — Imported source declares an outputAn imported source declares a root output even though only the entry source may publish one.
Retry after correcting the source.
E_IMPORTED_PROJECT_SETTINGS — Imported project settingsAn imported source contains project-wide settings that are valid only in the entry source.
Retry after correcting the source.
E_IMPORT_REQUIRES_FILE — Import requires a source fileAn import was requested from source text without a filesystem base for resolving its path.
Retry after correcting the source.
E_INVALID_EXTERNAL_PROGRAM — Invalid external-program declarationAn authored external-program declaration is incomplete or structurally inconsistent.
Retry after correcting the source.
E_MISSING_EXTERNAL_FIELD — Missing external-program fieldAn external-program declaration omits a field required to define its executable contract.
Retry after correcting the source.
E_MISSING_EXTERNAL_FILE — Missing external-program fileAn external-program declaration does not specify the source or executable file it requires.
Retry after correcting the source.
E_MISSING_IMPORT_ALIAS — Missing import aliasAn import form that requires a local alias does not provide one.
Retry after correcting the source.
E_PROGRAM_IMPORT_COLLISION — Program import collisionAn imported program name collides with another imported or locally declared name.
Retry after correcting the source.
E_PROGRAM_IMPORT_CYCLE — Program import cycleAuthored program declarations import one another in a cycle.
Retry after correcting the source.
E_PROGRAM_IMPORT_DEPTH — Program import depth exceededNested authored program imports exceed ClipAsm's supported linking depth.
Retry after correcting the source.
E_SOURCE_WITHOUT_BASE — Source has no filesystem baseIn-memory source attempted an operation that requires a source-file directory.
Retry after correcting the command or call arguments.
E_UNKNOWN_EXTERNAL_FIELD — Unknown external-program fieldAn external-program declaration contains a field name that ClipAsm does not recognize.
Retry after correcting the source.
E_UNKNOWN_PROGRAM — Unknown programClipAsm could not resolve a called name as a built-in, imported, or locally declared program.
Retry after correcting the source.
arguments, types, output bindings, and stack inputs
E_AMBIGUOUS_GENERIC_TYPE — Ambiguous generic typeClipAsm could not determine one concrete Video or Audio type for a generic program call.
Retry after correcting the source.
E_BODY_OUTPUT_COUNT — Wrong body output countA program body left a different number of stack values than its contract requires.
Retry after correcting the source.
E_DUPLICATE_ARGUMENT — Duplicate argumentA program call supplies the same named argument more than once.
Retry after correcting the source.
E_EMPTY_CONCAT — Empty concat inputThe concat built-in received no values even though at least one is required.
Retry after correcting the source.
E_GENERIC_TYPE_MISMATCH — Generic type mismatchArguments to one generic call resolve to different concrete Video and Audio types.
Retry after correcting the source.
E_INPUT_BODY_OUTPUT_COUNT — Wrong input-body output countAn input-transforming body produced a different number of values than its built-in requires.
Retry after correcting the source.
E_INVALID_ACCESS_TARGET — Invalid stack-access targetA stack-access modifier was applied to a construct that cannot accept it.
Retry after correcting the source.
E_INVALID_ARGUMENT_TYPE — Invalid argument typeA call argument has a different scalar or graph value type than its parameter requires.
Retry after correcting the source.
E_INVALID_ARGUMENT_VALUE — Invalid argument valueA typed call argument is outside the value domain accepted by its program.
Retry after correcting the source.
E_INVALID_OUTPUT_BINDING — Invalid output bindingAn output binding has a name, position, or shape that does not match the called program.
Retry after correcting the source.
E_INVALID_PARAMETER_DEFAULT — Invalid parameter defaultAn authored program parameter default is not a constant value of its declared scalar type.
Retry after correcting the source.
E_INVALID_STACK_ACCESS — Invalid stack accessA call requests stack visibility that its syntax or program contract does not permit.
Retry after correcting the source.
E_INVALID_TYPE_ARGUMENT — Invalid type argumentAn explicit type argument is not one of the types accepted by the generic program.
Retry after correcting the source.
E_MISSING_ARGUMENT — Missing argumentA program call omits a required named or positional argument.
Retry after correcting the source.
E_MISSING_IMAGE_DURATION — Missing image durationAn image call needs an explicit duration because no enclosing timeline context can supply one.
Retry after correcting the source.
E_MISSING_REQUIRED_INPUT — Missing required stack inputThe current stack does not contain a value required to bind a program input.
Retry after correcting the source.
E_MIXED_GRAPH_ARGUMENT_STYLES — Mixed graph argument stylesOne call mixes explicit graph-valued arguments with implicit stack binding.
Retry after correcting the source.
E_OUTPUT_BINDING_COUNT — Wrong output binding countA call declares a different number of output bindings than the program returns.
Retry after correcting the source.
E_PARAMETER_NOT_VALUE — Parameter is not a valueA scalar parameter name is used where the language requires a graph or concrete runtime value.
Retry after correcting the source.
E_POSITIONAL_AFTER_NAMED — Positional argument after named argumentA call supplies a positional argument after named arguments have begun.
Retry after correcting the source.
E_PROGRAM_OUTPUT_COUNT — Wrong program output countAn authored program body produces a different number of outputs than its declaration promises.
Retry after correcting the source.
E_PROGRAM_OUTPUT_TYPE — Wrong program output typeAn authored program body produces an output whose type differs from its declaration.
Retry after correcting the source.
E_SCALAR_NOT_VALUE — Scalar is not a graph valueA scalar expression is used where a Video or Audio graph value is required.
Retry after correcting the source.
E_STACK_UNDERFLOW — Stack underflowA statement or call needs more stack values than are currently available.
Retry after correcting the source.
E_TOO_MANY_POSITIONAL_ARGUMENTS — Too many positional argumentsA program call supplies more positional arguments than its signature has slots.
Retry after correcting the source.
E_TYPE_INFERENCE_DEPENDENCY — Type inference dependency failureGeneric type inference depends on another unresolved value or stack selection and needs explicit Video or Audio context.
Retry after correcting the source.
E_TYPE_MISMATCH — Value type mismatchA Video, Audio, or scalar value is used where a different concrete type is required.
Retry after correcting the source.
E_UNEXPECTED_PROGRAM_BODY — Unexpected program bodyA call supplies a body to a program whose contract rejects caller-provided bodies.
Retry after correcting the source.
E_UNEXPECTED_TYPE_ARGUMENT — Unexpected type argumentA call supplies an explicit type argument to a program that is not generic.
Retry after correcting the source.
E_UNKNOWN_PROGRAM_ARGUMENT — Unknown program argumentA program call uses an argument name that is not present in the program's signature.
Retry after correcting the source.
E_UNRESOLVED_LOCAL_TYPE — Unresolved local typeA local output or reference has insufficient context for ClipAsm to infer its concrete type.
Retry after correcting the source.
timeline ranges, placement names, and compile-time evaluation
E_AMBIGUOUS_TIMELINE_PLACEMENT — Ambiguous timeline placementA timeline selector matched more than one authored placement where exactly one was required.
Retry after correcting the source.
E_AUDIO_DURATION_OVERFLOW — Audio duration overflowAn exact audio duration or sample calculation exceeded ClipAsm's supported range.
Retry after correcting the source.
E_COMPILED_JSON — Invalid compiled JSONCompiled-program JSON could not be serialized or decoded in the expected format.
Retrying without a relevant change will not help.
E_CROSSFADE_AUDIO_DURATION — Invalid crossfade audio durationCrossfade audio inputs cannot provide the exact overlap duration required by the transition.
Retry after correcting the source.
E_DIVISION_BY_ZERO — Division by zeroA scalar expression attempted exact division by zero.
Retry after correcting the source.
E_EMPTY_JOIN — Empty join resultA graph join operation has no input values from which to produce an output.
Retry after correcting the source.
E_ENTRYPOINT_OUTPUT_COUNT — Wrong entrypoint output countThe root program produced a different number of outputs than the entrypoint contract permits.
Retry after correcting the source.
E_FRAME_OVERFLOW — Frame count overflowAn exact duration or timeline calculation exceeded the supported frame-count range.
Retry after correcting the source.
E_GRAPH_TOO_LARGE — Graph size limit exceededThe authored program exceeded a bounded graph or generated execution-recipe size limit.
Retry after correcting the source.
E_INVALID_CROSSFADE_DURATION — Invalid crossfade durationThe requested crossfade duration is zero, negative, or longer than the available transition inputs.
Retry after correcting the source.
E_INVALID_FLASH_CUT_DURATION — Invalid flash-cut durationThe requested flash-cut duration cannot fit the transition's exact timeline constraints.
Retry after correcting the source.
E_INVALID_REPEAT_COUNT — Invalid repeat countA repeat count is not a positive supported integer.
Retry after correcting the source.
E_INVALID_SCALAR_OPERATION — Invalid scalar operationA scalar operator was applied to values for which that operation is not defined.
Retry after correcting the source.
E_INVALID_TIMELINE_SELECTOR — Invalid timeline selectorA timeline selector is malformed or cannot be applied to the selected value.
Retry after correcting the source.
E_INVALID_TIME_RANGE — Invalid time rangeA time range is reversed, empty where prohibited, or outside the supported exact domain.
Retry after correcting the source.
E_INVALID_ZOOM_AMOUNT — Invalid zoom amountA zoom amount is outside the positive range supported by the zoom effect.
Retry after correcting the source.
E_MISSING_REFERENCE — Missing named referenceA timeline expression refers to a named output or placement that does not exist.
Retry after correcting the source.
E_TIMELINE_PLACEMENT_CONFLICT — Timeline placement conflictTwo authored placements assign incompatible ranges to the same output timeline.
Retry after correcting the source.
E_TIMELINE_ROOT_MISMATCH — Timeline root mismatchValues combined by one timeline operation do not share the required timeline root.
Retry after correcting the source.
E_TIME_NOT_FRAME_ALIGNED — Time is not frame-alignedAn exact Video time does not fall on a frame boundary for the active frame rate.
Retry after correcting the source.
E_TIME_NOT_SAMPLE_ALIGNED — Time is not sample-alignedAn exact Audio time does not fall on a sample boundary for the active sample rate.
Retry after correcting the source.
E_UNKNOWN_TIMELINE_PLACEMENT — Unknown timeline placementA timeline selector does not match any authored placement in the selected value.
Retry after correcting the source.
E_UNRESOLVED_TIMELINE — Unresolved timelineCompilation could not derive the exact timeline layout required by a later operation.
Retry after correcting the source.
missing media, probing, decoding, and tool capabilities
E_ASSET_CHANGED — Asset changed during preparationAn input asset changed while ClipAsm was inspecting or preparing it.
Retry after the external file, tool, process, or lock state changes.
E_FFMPEG_CAPABILITY — Required FFmpeg capability unavailableThe selected FFmpeg installation lacks a filter, codec, or feature required by the plan.
Retry after repairing the environment or media inputs.
E_FFPROBE — FFprobe inspection failedFFprobe could not inspect an input or returned unusable media information.
Retry after repairing the environment or media inputs.
E_MISSING_AUDIO_FILE — Missing audio fileAn Audio source references a file that preflight cannot find or access.
Retry after repairing the environment or media inputs.
E_MISSING_IMAGE_FILE — Missing image fileAn image source references a file that preflight cannot find or access.
Retry after repairing the environment or media inputs.
E_MISSING_VIDEO_FILE — Missing video fileA Video source references a file that preflight cannot find or access.
Retry after repairing the environment or media inputs.
E_PREPARED_JSON — Invalid prepared JSONA prepared render plan could not be serialized or decoded as the expected JSON format.
Retrying without a relevant change will not help.
E_SOURCE_CONTRACT — Source contract failureA probed media source does not satisfy the stream, duration, or decodability contract required by its ClipAsm source kind.
Retry after repairing the environment or media inputs.
E_SOURCE_DECODABILITY — Source is not decodableMedia probing succeeded partially, but the selected source stream cannot be decoded as required.
Retry after repairing the environment or media inputs.
E_TOOL_CHANGED — Media tool changedFFmpeg or FFprobe changed after ClipAsm recorded the tool identity used for preparation.
Retry after the external file, tool, process, or lock state changes.
E_TOOL_OUTPUT_LIMIT — Media tool output limit exceededFFmpeg, FFprobe, or an external tool produced more output than ClipAsm safely accepts.
Retry after repairing the environment or media inputs.
external executable discovery, protocol, and execution
E_EXTERNAL_CHANGED — External program changedAn external executable changed after ClipAsm recorded its prepared identity.
Retry after the external file, tool, process, or lock state changes.
E_EXTERNAL_EXECUTABLE — External executable unavailableClipAsm could not resolve or inspect the configured external-program executable.
Retry after repairing the environment or media inputs.
E_EXTERNAL_EXECUTION — External program execution failedAn external program could not be started, completed unsuccessfully, or exceeded execution limits.
Retrying may help if the failure was transient.
E_EXTERNAL_PROTOCOL — External program protocol failureAn external program returned output that does not satisfy ClipAsm's protocol contract.
Retry after repairing the environment or media inputs.
rendering, outputs, manifests, and publication
E_EXPORT_DIMENSIONS — Invalid export dimensionsA rendered Video export has dimensions that the selected output contract cannot accept.
Retry after correcting the source.
E_FFMPEG — FFmpeg execution failedFFmpeg failed while ClipAsm was rendering or encoding an artifact.
Retry after repairing the environment or media inputs.
E_INVALID_MANIFEST_DESTINATION — Invalid manifest destinationThe render-manifest path is unsafe, conflicts with output, or cannot be used as requested.
Retry after correcting the command or call arguments.
E_INVALID_OUTPUT_DESTINATION — Invalid output destinationThe requested render output path cannot safely receive the selected artifact.
Retry after correcting the command or call arguments.
E_INVALID_OUTPUT_EXTENSION — Invalid output extensionThe output filename extension is missing or incompatible with the rendered media type.
Retry after correcting the command or call arguments.
E_MANIFEST — Render manifest failureClipAsm could not construct, serialize, or validate the render manifest.
Retry after repairing the environment or media inputs.
E_MANIFEST_COLLISION — Manifest path collisionTwo publication products resolve to the same manifest or artifact destination.
Retry after correcting the command or call arguments.
E_MISSING_OUTPUT — Missing output declarationThe entry source does not identify the value or path that should be published.
Retry after correcting the source.
E_OUTPUT_COLLISION — Output destination collisionMore than one rendered product resolves to the same output destination.
Retry after correcting the command or call arguments.
E_OUTPUT_IO — Output I/O failureClipAsm could not create, write, move, or inspect a render output path.
Retry after repairing the environment or media inputs.
E_PUBLICATION — Publication failedClipAsm could not atomically publish a staged artifact to its requested destination.
Retry after repairing the environment or media inputs.
E_PUBLICATION_LOCK — Publication lock unavailableClipAsm could not acquire the filesystem lock protecting an output publication.
Retry after the external file, tool, process, or lock state changes.
E_RENDER_AUDIO_TIMELINE — Invalid audio render timelineAn Audio render timeline cannot be represented by the exact sample ranges required for execution.
Retry after correcting the source.
paths, hashing, cache state, and filesystem access
E_CACHE_IO — Cache I/O failureClipAsm could not read, write, create, or inspect a cache path.
Retrying may help if the failure was transient.
E_CACHE_LOCK — Cache lock unavailableClipAsm could not acquire the filesystem lock protecting a cache entry.
Retry after the external file, tool, process, or lock state changes.
E_INPUT_HASH — Input hashing failedClipAsm could not read and hash an input needed for deterministic identity.
Retry after the external file, tool, process, or lock state changes.
E_PATH_RESOLUTION — Path resolution failedA source-relative or destination path could not be normalized or resolved safely.
Retry after repairing the environment or media inputs.
E_RELATIVE_PATH_WITHOUT_BASE — Relative path has no baseA relative path was supplied through an API that has no source file or base directory.
Retry after correcting the command or call arguments.
E_SOURCE_IO — Source I/O failureClipAsm could not read, canonicalize, or inspect a source file.
Retry after repairing the environment or media inputs.
browser assets, limits, and browser render plans
E_BROWSER_ASSET_FACTS — Invalid browser asset factsBrowser-supplied media facts were missing, malformed, or inconsistent with the prepared asset.
Retry after repairing the environment or media inputs.
E_BROWSER_ASSET_HASH — Browser asset hash mismatchA browser asset's content hash did not match the hash recorded during preparation.
Retry after the external file, tool, process, or lock state changes.
E_BROWSER_ASSET_PATH — Invalid browser asset pathA browser asset path could not be normalized or matched to the prepared plan.
Retry after correcting the command or call arguments.
E_BROWSER_DUPLICATE_ASSET — Duplicate browser assetThe browser supplied more than one asset for the same normalized path.
Retry after correcting the command or call arguments.
E_BROWSER_MISSING_ASSET — Missing browser assetThe browser did not supply an asset required by the compiled program.
Retry after repairing the environment or media inputs.
E_BROWSER_RENDER_JSON — Invalid browser render plan JSONThe browser render plan could not be serialized or decoded as the expected JSON format.
Retry after repairing the environment or media inputs.
E_BROWSER_RENDER_LIMIT — Browser render limit exceededThe prepared render exceeds a browser runtime work, size, or duration limit.
Retry after correcting the source.
E_BROWSER_RENDER_UNSUPPORTED — Unsupported browser render operationThe browser renderer does not support an operation required by this prepared plan.
Retrying without a relevant change will not help.
likely ClipAsm defects that should be reported
E_ARTIFACT_CONTRACT — Artifact contract failureA rendered artifact violated an invariant that ClipAsm should have established before publication.
Preserve a safe reproduction and report a likely ClipAsm defect.
E_FINGERPRINT — Fingerprint construction failedClipAsm could not encode invariant-protected data for a deterministic identity fingerprint.
Preserve a safe reproduction and report a likely ClipAsm defect.
E_INTERNAL_BINDING — Internal binding failureA checked call reached evaluation with a stack binding state the checker should have prevented.
Preserve a safe reproduction and report a likely ClipAsm defect.
E_INTERNAL_EXTERNAL_PROGRAM — Internal external-program failureAn external-program definition reached a phase with inconsistent compiler-owned metadata.
Preserve a safe reproduction and report a likely ClipAsm defect.
E_INTERNAL_PROGRAM_CONTRACT — Internal program contract failureA built-in program implementation disagreed with its compiler-owned signature or body contract.
Preserve a safe reproduction and report a likely ClipAsm defect.
E_INTERNAL_PROGRAM_LINK — Internal program link failureThe linker could not resolve a program reference that an earlier owning phase should have validated.
Preserve a safe reproduction and report a likely ClipAsm defect.
E_INTERNAL_TYPE_RESOLUTION — Internal type resolution failureA checked value reached evaluation without the concrete type guaranteed by type checking.
Preserve a safe reproduction and report a likely ClipAsm defect.
E_INVALID_GRAPH — Invalid semantic graphA semantic graph violated an invariant that its builder should have enforced.
Preserve a safe reproduction and report a likely ClipAsm defect.
E_INVALID_PLAN — Invalid prepared planA prepared render plan violated an invariant that preflight should have established.
Preserve a safe reproduction and report a likely ClipAsm defect.
E_INVALID_PROGRAM_DEFINITION — Invalid program definitionA registered program definition is internally inconsistent or cannot satisfy registry invariants.
Preserve a safe reproduction and report a likely ClipAsm defect.