PageRenderTime 44ms CodeModel.GetById 12ms RepoModel.GetById 1ms app.codeStats 0ms

/java/org/apache/tomcat/jni/Error.java

https://github.com/enson16855/tomcat70
Java | 96 lines | 23 code | 12 blank | 61 comment | 0 complexity | 260e28c440e470ed02687ca703fed414 MD5 | raw file
Possible License(s): Apache-2.0
  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one or more
  3. * contributor license agreements. See the NOTICE file distributed with
  4. * this work for additional information regarding copyright ownership.
  5. * The ASF licenses this file to You under the Apache License, Version 2.0
  6. * (the "License"); you may not use this file except in compliance with
  7. * the License. You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. */
  17. package org.apache.tomcat.jni;
  18. /** Error
  19. *
  20. * @author Mladen Turk
  21. */
  22. public class Error extends Exception {
  23. private static final long serialVersionUID = 1L;
  24. /**
  25. * APR error type.
  26. */
  27. private int error;
  28. /**
  29. * A description of the problem.
  30. */
  31. private String description;
  32. /**
  33. * Construct an APRException.
  34. *
  35. * @param error one of the value in Error
  36. * @param description error message
  37. */
  38. private Error(int error, String description)
  39. {
  40. super(error + ": " + description);
  41. this.error = error;
  42. this.description = description;
  43. }
  44. /**
  45. * Get the APR error code of the exception.
  46. *
  47. * @return error of the Exception
  48. */
  49. public int getError()
  50. {
  51. return error;
  52. }
  53. /**
  54. * Get the APR description of the exception.
  55. *
  56. * @return description of the Exception
  57. */
  58. public String getDescription()
  59. {
  60. return description;
  61. }
  62. /**
  63. * Get the last platform error.
  64. * @return apr_status_t the last platform error, folded into apr_status_t, on most platforms
  65. * This retrieves errno, or calls a GetLastError() style function, and
  66. * folds it with APR_FROM_OS_ERROR. Some platforms (such as OS2) have no
  67. * such mechanism, so this call may be unsupported. Do NOT use this
  68. * call for socket errors from socket, send, recv etc!
  69. */
  70. public static native int osError();
  71. /**
  72. * Get the last platform socket error.
  73. * @return the last socket error, folded into apr_status_t, on all platforms
  74. * This retrieves errno or calls a GetLastSocketError() style function,
  75. * and folds it with APR_FROM_OS_ERROR.
  76. */
  77. public static native int netosError();
  78. /**
  79. * Return a human readable string describing the specified error.
  80. * @param statcode The error code the get a string for.
  81. * @return The error string.
  82. */
  83. public static native String strerror(int statcode);
  84. }