Sha256: af8b710ee17ae0be481554feae95a32fc8df0a3aea742c42acb7aa2cea27d818
Contents?: true
Size: 771 Bytes
Versions: 23
Compression:
Stored size: 771 Bytes
Contents
# This file contains all the errors that can be raised in the # Talia core. Since these are not useful classes, they are grouped # together in one file. # Indicates that it was tried to create an object with # an identifier (e.g. an URI) which already exists in the # system. class DuplicateIdentifierError < RuntimeError end # Indicates an error during initialization class SystemInitializationError < RuntimeError end # Indicates an error with the predicate naming class SemanticNamingError < RuntimeError end # Indicates an attempt to save attributes on an unsaved source class UnsavedSourceError < RuntimeError end # Indicates an error in a query class QueryError < RuntimeError end # Indicates an error with import data class ImportError < RuntimeError end
Version data entries
23 entries across 23 versions & 1 rubygems