interscript / interscript-ruby

Interoperable script conversion systems (ISCS) with the `interscript` gem
Other
11 stars 30 forks source link

Interscript exception classes #749

Closed webdev778 closed 2 years ago

webdev778 commented 2 years ago

This implements the following exception classes:

An error caused by a lack of some map

class MapNotFoundError < StandardError; end

An error caused by a missing dependency

class ExternalUtilError < StandardError; end

An error caused by a particular compiler

class SystemConversionError < StandardError; end

An error caused by an incorrect map implementation

class MapLogicError < StandardError; end

This fixes #737

ronaldtse commented 2 years ago

Thanks @webdev778 ! Now just if the specs pass…