public class RedTapeRecipe extends Recipe{
private boolean isStuck;
public void stir() {
isStuck = true;
System.out.println("You're stuck, buddy.");
}
public void serve() {
if (!isStuck) {
throw new RuntimeException("You're not actually stuck.");
}
System.out.println("ประกRed Tape, served cold.");
}
}
Example Use Cases:
- When your project's deadline is 6 months ago. ประก
- When your boss is breathing down your neck.
- When you've forgotten what you were doing.