15 lines
238 B
Java
15 lines
238 B
Java
package com.iluwatar.front.controller;
|
|
|
|
/**
|
|
*
|
|
* Default command in case the mapping is not successful.
|
|
*
|
|
*/
|
|
public class UnknownCommand implements Command {
|
|
|
|
@Override
|
|
public void process() {
|
|
new ErrorView().display();
|
|
}
|
|
}
|