QueryMasterFailedException.java 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. package com.yihu.hos.central.rest.exception;
  2. public class QueryMasterFailedException extends RuntimeException {
  3. private String startTime;
  4. private String endTime;
  5. private String tableCode;
  6. private String uploadCode;
  7. private String errorMsg;
  8. public QueryMasterFailedException(String startTime, String endTime, String tableCode, String uploadCode, String errorMsg) {
  9. this.startTime = startTime;
  10. this.endTime = endTime;
  11. this.tableCode = tableCode;
  12. this.uploadCode = uploadCode;
  13. this.errorMsg = errorMsg;
  14. }
  15. public QueryMasterFailedException(String tableCode, String uploadCode, String errorMsg) {
  16. this.tableCode = tableCode;
  17. this.uploadCode = uploadCode;
  18. this.errorMsg = errorMsg;
  19. }
  20. public String getStartTime() {
  21. return startTime;
  22. }
  23. public void setStartTime(String startTime) {
  24. this.startTime = startTime;
  25. }
  26. public String getEndTime() {
  27. return endTime;
  28. }
  29. public void setEndTime(String endTime) {
  30. this.endTime = endTime;
  31. }
  32. public String getTableCode() {
  33. return tableCode;
  34. }
  35. public void setTableCode(String tableCode) {
  36. this.tableCode = tableCode;
  37. }
  38. public String getUploadCode() {
  39. return uploadCode;
  40. }
  41. public void setUploadCode(String uploadCode) {
  42. this.uploadCode = uploadCode;
  43. }
  44. public String getErrorMsg() {
  45. return errorMsg;
  46. }
  47. public void setErrorMsg(String errorMsg) {
  48. this.errorMsg = errorMsg;
  49. }
  50. }