Package org.g4studio.core.id

Examples of org.g4studio.core.id.CreateSequnceException


          tmp = this.minValue;
        } else {
          final String msg = this.id + " 序号生成器的序号已经达到最大值:" + maxValue
              + " 了!系统无法在分配序号!";
          logger.error(msg);
          throw new CreateSequnceException(msg);
        }
      }
      sequenceStorer.updateMaxValueByFieldName(tmp, this.getId());
      maxCount = tmp;
    }
View Full Code Here

TOP

Related Classes of org.g4studio.core.id.CreateSequnceException

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.