Package github.priyatam.springrest.utils.exception

Examples of github.priyatam.springrest.utils.exception.InvalidTagException


  }

  @Cacheable(value = "etags", key = "#url")
  public String get(String url) {
    if (!ETAGS.containsKey(url)) {
      throw new InvalidTagException();
    }
    return ETAGS.get(url);
  }
View Full Code Here

TOP

Related Classes of github.priyatam.springrest.utils.exception.InvalidTagException

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.