85bc172d3dc13c59d5fdac963c5438a21cbf748b
[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 David ‘Bombe’ Roden <bombe@freenetproject.org>
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         EndListPeerNotes(FcpMessage fcpMessage) {
23                 super(fcpMessage);
24         }
25
26 }