Package com.vaadin.flow.server.startup
Class DuplicateNavigationTitleException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.vaadin.flow.server.startup.DuplicateNavigationTitleException
-
- All Implemented Interfaces:
Serializable
public class DuplicateNavigationTitleException extends RuntimeException
Exception indicating a conflict between a route target implementingHasDynamicTitle
while also having aPageTitle
annotation.For internal use only. May be renamed or removed in a future release.
- Since:
- 1.0
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DuplicateNavigationTitleException​(String message)
Constructs a new exception with the specified detail message.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
DuplicateNavigationTitleException
public DuplicateNavigationTitleException​(String message)
Constructs a new exception with the specified detail message.- Parameters:
message
- the detail message. The detail message is saved for later retrieval by theThrowable.getMessage()
method.
-
-