示例#1
0
文件: RError.java 项目: chumer/fastr
 @TruffleBoundary
 protected RErrorException(RError.Message msg, Object[] args) {
   super(RErrorHandling.formatMessage(msg, args), null);
   this.msg = msg;
   this.args = args;
 }