[View]  [Edit]  [Lock]  [References]  [Attachments]  [History]  [Home]  [Changes]  [Search]  [Help] 

Error


Error is a VSE abstract class part of a extensive Exception hierarchy. Concrete VSE error classes in S8 are represented as plain Error.

ArithmeticError class VSE
    RECOMENDATION: In order to compatibilize, add ArithmeticError as Error sublcass on S8 side.

ZeroDivide class VSE
    RECOMENDATION: In order to compatibilize, add ZeroDivide as ArithmeticError sublcass on S8 side.
Error
   subclass: #ArithmeticError
   instanceVariableNames: ''
   category: #Kernel-VSECompat !

ArithmeticError
   subclass: #ZeroDivide
   instanceVariableNames: ''
   category: #Kernel-VSECompat !