Package-level declarations

This package contains all the custom exceptions thrown by Ksui. These are mostly Sui wrapper exceptions.

Types

Link copied to clipboard
data class ErrorLocation(val line: Int, val column: Int)
Link copied to clipboard
data class GraphQLError(val message: String, val locations: List<ErrorLocation>? = null, val path: List<Any>? = null, val extensions: Map<String, Any?>? = null)
Link copied to clipboard
open class ParsingException(message: String) : Exception

This error is used to explain why parsing failed.

Link copied to clipboard

Instantiates a new Signature scheme not supported exception.

Link copied to clipboard
Link copied to clipboard
data class SuiError(val errors: List<GraphQLError>? = null)
Link copied to clipboard
open class SuiException(message: String) : Exception

Base exception for all exceptions in the Sui SDK.