|
BadFunctorArityException.java
|
// FILE. . . . . d:/hak/hlt/src/hlt/fot/BadFunctorArityException.java // EDIT BY . . . Hassan Ait-Kaci // ON MACHINE. . Hak-Laptop // STARTED ON. . Sat Jul 14 07:23:39 2018
|
package hlt.fot;
| Class of RuntimeException indicating an arity mismatch. |
public class BadFunctorArityException extends RuntimeException {
| Constructs a new BadFunctorArityException for given functor and arity. |
public BadFunctorArityException (Functor functor, int arity) { super("Arity mismatch: functor "+functor.name()+" expects "+functor.arity()+" arguments, not "+arity); } }
This file was generated on Sat Aug 25 07:59:54 CEST 2018 from file BadFunctorArityException.java
by the hlt.language.tools.Hilite Java tool written by Hassan Aït-Kaci