Class TomlExtensionException

All Implemented Interfaces:
Serializable

public final class TomlExtensionException extends TomlParseException
An attempt was made to extend an inline table or array. From the TOML docs:
  • Inline tables are fully self-contained and define all keys and sub-tables within them. Keys and sub-tables cannot be added outside the braces.
  • Attempting to append to a statically defined array, even if that array is empty, must produce an error at parse time.
See Also:
  • Constructor Details

    • TomlExtensionException

      public TomlExtensionException(@NotNull @NotNull String message)