JavaVM.st
changeset 3539 e546e1df7a01
parent 3515 84f25ecd7385
child 3551 f8304e321df7
equal deleted inserted replaced
3538:437fc55b3eed 3539:e546e1df7a01
  3887 
  3887 
  3888     "Created: / 13-04-2011 / 12:16:36 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
  3888     "Created: / 13-04-2011 / 12:16:36 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
  3889 !
  3889 !
  3890 
  3890 
  3891 throwNoSuchMethodError
  3891 throwNoSuchMethodError
       
  3892       ^ self throwNoSuchMethodError: 'looking up a method failed'.
       
  3893 
       
  3894     "Created: / 11-04-2011 / 20:33:19 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
       
  3895     "Modified: / 21-03-2016 / 01:11:31 / Jan Vrany <jan.vrany@fit.cvut.cz>"
       
  3896 !
       
  3897 
       
  3898 throwNoSuchMethodError: message
  3892       ^ self throwExceptionClassName: 'java.lang.NoSuchMethodError'
  3899       ^ self throwExceptionClassName: 'java.lang.NoSuchMethodError'
  3893               withMessage: 'looking up a method failed'.
  3900               withMessage: message
  3894 
  3901 
  3895     "Created: / 11-04-2011 / 20:33:19 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
  3902     "Created: / 21-03-2016 / 01:11:16 / Jan Vrany <jan.vrany@fit.cvut.cz>"
  3896 !
  3903 !
  3897 
  3904 
  3898 throwNullPointerException
  3905 throwNullPointerException
  3899     self throwNullPointerException:'null pointer'
  3906     self throwNullPointerException:'null pointer'
  3900 
  3907