Class DirCacheNameConflictException

All Implemented Interfaces:
Serializable

public class DirCacheNameConflictException extends IllegalStateException
Thrown by DirCache code when entries overlap in impossible way.
Since:
4.2
See Also:
  • Field Details

    • serialVersionUID

      private static final long serialVersionUID
      See Also:
    • path1

      private final String path1
    • path2

      private final String path2
  • Constructor Details

    • DirCacheNameConflictException

      public DirCacheNameConflictException(String path1, String path2)
      Construct an exception for a specific path.
      Parameters:
      path1 - one path that conflicts.
      path2 - another path that conflicts.
  • Method Details

    • getPath1

      public String getPath1()
      Get one of the paths that has a conflict
      Returns:
      one of the paths that has a conflict
    • getPath2

      public String getPath2()
      Get another path that has a conflict
      Returns:
      another path that has a conflict