Package erjang

Examples of erjang.ErlangError


        }

        reply.putInt(val);

      } else {
        throw new ErlangError(EAtom.intern("einval"));
      }
    }

    return reply;
  }
View Full Code Here


      } while (pair0 == EProc.TAIL_MARKER);
     
      ETuple2 out = ETuple2.cast(pair0);
     
      if (out == null) {
        throw new ErlangError(am_badmatch, pair0);
      }
     
      map.add(out.elem1);
      acc = out.elem2;
     
View Full Code Here

    System.arraycopy(reg,0, res,0, arity);
    return res;
  }

  public static int nofailLabel() {
    throw new ErlangError(EAtom.intern("nofail_failed"));
  }
View Full Code Here

TOP

Related Classes of erjang.ErlangError

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.