4 changed files with 29 additions and 8 deletions
@ -0,0 +1,10 @@ |
|||
package com.galaxis.rcs.plan.path; |
|||
|
|||
import com.galaxis.rcs.common.enums.LCCDirection; |
|||
|
|||
public class PathNotFoundException extends RuntimeException { |
|||
public PathNotFoundException(String startId, String endId, LCCDirection startDir, LCCDirection endDir) { |
|||
super(String.format("Path not found from %s(%s) to %s(%s)", |
|||
startId, startDir, endId, endDir)); |
|||
} |
|||
} |
|||
Loading…
Reference in new issue