add TestDDAResponse
[jSite2.git] / src / net / pterodactylus / util / fcp / EndListPeerNotes.java
1 /**
2  * © 2008 INA Service GmbH
3  */
4 package net.pterodactylus.util.fcp;
5
6
7 /**
8  * The “EndListPeerNotes” message signals the end of a list of “PeerNote”
9  * messages.
10  * 
11  * @author <a href="mailto:dr@ina-germany.de">David Roden</a>
12  * @version $Id$
13  */
14 public class EndListPeerNotes extends BaseMessage {
15
16         /**
17          * Creates a new “EndListPeerNotes” message that wraps the received message.
18          * 
19          * @param fcpMessage
20          *            The received message
21          */
22         public EndListPeerNotes(FcpMessage fcpMessage) {
23                 super(fcpMessage);
24         }
25
26 }