UnauthorizedException.java 268 B

1234567891011121314
  1. package com.wechi.adweb.bridge.exception;
  2. /**
  3. * @author wfansh
  4. */
  5. public class UnauthorizedException extends Exception {
  6. public UnauthorizedException() {
  7. super();
  8. }
  9. public UnauthorizedException(String message) {
  10. super(message);
  11. }
  12. }