Без опису

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /*
  2. *
  3. * Licensed to the Apache Software Foundation (ASF) under one
  4. * or more contributor license agreements. See the NOTICE file
  5. * distributed with this work for additional information
  6. * regarding copyright ownership. The ASF licenses this file
  7. * to you under the Apache License, Version 2.0 (the
  8. * "License"); you may not use this file except in compliance
  9. * with the License. You may obtain a copy of the License at
  10. *
  11. * http://www.apache.org/licenses/LICENSE-2.0
  12. *
  13. * Unless required by applicable law or agreed to in writing,
  14. * software distributed under the License is distributed on an
  15. * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  16. * KIND, either express or implied. See the License for the
  17. * specific language governing permissions and limitations
  18. * under the License.
  19. *
  20. */
  21. /**
  22. * FileError
  23. */
  24. function FileError (error) {
  25. this.code = error || null;
  26. }
  27. // File error codes
  28. // Found in DOMException
  29. FileError.NOT_FOUND_ERR = 1;
  30. FileError.SECURITY_ERR = 2;
  31. FileError.ABORT_ERR = 3;
  32. // Added by File API specification
  33. FileError.NOT_READABLE_ERR = 4;
  34. FileError.ENCODING_ERR = 5;
  35. FileError.NO_MODIFICATION_ALLOWED_ERR = 6;
  36. FileError.INVALID_STATE_ERR = 7;
  37. FileError.SYNTAX_ERR = 8;
  38. FileError.INVALID_MODIFICATION_ERR = 9;
  39. FileError.QUOTA_EXCEEDED_ERR = 10;
  40. FileError.TYPE_MISMATCH_ERR = 11;
  41. FileError.PATH_EXISTS_ERR = 12;
  42. module.exports = FileError;