NotRepresentableException.js 355 B

12345678910
  1. import Exception from '../../../../java/lang/Exception'
  2. export default class NotRepresentableException extends Exception {
  3. constructor() {
  4. super()
  5. NotRepresentableException.constructor_.apply(this, arguments)
  6. }
  7. static constructor_() {
  8. Exception.constructor_.call(this, 'Projective point not representable on the Cartesian plane.')
  9. }
  10. }