パッケージ org.wcardinal.exception

クラス NotReadyException

すべての実装されたインタフェース:
Serializable

public class NotReadyException extends RuntimeException
Thrown to indicate methods which are not ready have been invoked.

Invoking methods of AbstractController or fields including SClass from constructors or @PostConstruct methods is, typically, the root cause of this exception. If this is the case, please consider using @OnCreate.

 import org.wcardinal.controller.annotation.Callable;
 import org.wcardinal.controller.annotation.Controller;

 @Controller
 class MyController {
   public SClass<String> field;

   MyController(SClass<String> field) {
     this.field = field;
     field.set("Cardinal"); // This throws NotReadyException since SClass<String> is not ready to be used.
   }

   @OnCreate
   void init() {
     field.set("Cardinal"); // Instead please initialize here.
   }
 }
関連項目:
  • コンストラクタの詳細

    • NotReadyException

      public NotReadyException()
    • NotReadyException

      public NotReadyException(String message)