Package rocket.generator.rebind.field

Examples of rocket.generator.rebind.field.FieldNotFoundException


  }

  public Field getField(final String name) {
    final Field method = this.findField(name);
    if (null == method) {
      throw new FieldNotFoundException("Unable to find a field called \"" + name + "\" within " + this.getName());
    }
    return method;
  }
View Full Code Here

TOP

Related Classes of rocket.generator.rebind.field.FieldNotFoundException

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.