PageRenderTime 50ms CodeModel.GetById 25ms RepoModel.GetById 0ms app.codeStats 0ms

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

https://github.com/kanishin/tomcat
Java | 98 lines | 23 code | 13 blank | 62 comment | 0 complexity | 32a1b88d8df25616ceeb15acd026cc71 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. * @version $Id$
  22. */
  23. public class Error extends Exception {
  24. private static final long serialVersionUID = 1L;
  25. /**
  26. * APR error type.
  27. */
  28. private final int error;
  29. /**
  30. * A description of the problem.
  31. */
  32. private final String description;
  33. /**
  34. * Construct an APRException.
  35. *
  36. * @param error one of the value in Error
  37. * @param description error message
  38. */
  39. private Error(int error, String description)
  40. {
  41. super(error + ": " + description);
  42. this.error = error;
  43. this.description = description;
  44. }
  45. /**
  46. * Get the APR error code of the exception.
  47. *
  48. * @return error of the Exception
  49. */
  50. public int getError()
  51. {
  52. return error;
  53. }
  54. /**
  55. * Get the APR description of the exception.
  56. *
  57. * @return description of the Exception
  58. */
  59. public String getDescription()
  60. {
  61. return description;
  62. }
  63. /**
  64. * Get the last platform error.
  65. * @return apr_status_t the last platform error, folded into apr_status_t, on most platforms
  66. * This retrieves errno, or calls a GetLastError() style function, and
  67. * folds it with APR_FROM_OS_ERROR. Some platforms (such as OS2) have no
  68. * such mechanism, so this call may be unsupported. Do NOT use this
  69. * call for socket errors from socket, send, recv etc!
  70. */
  71. public static native int osError();
  72. /**
  73. * Get the last platform socket error.
  74. * @return the last socket error, folded into apr_status_t, on all platforms
  75. * This retrieves errno or calls a GetLastSocketError() style function,
  76. * and folds it with APR_FROM_OS_ERROR.
  77. */
  78. public static native int netosError();
  79. /**
  80. * Return a human readable string describing the specified error.
  81. * @param statcode The error code the get a string for.
  82. * @return The error string.
  83. */
  84. public static native String strerror(int statcode);
  85. }