Return-Path: Delivered-To: apmail-directory-commits-archive@www.apache.org Received: (qmail 49153 invoked from network); 21 Aug 2005 19:25:20 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 21 Aug 2005 19:25:20 -0000 Received: (qmail 5865 invoked by uid 500); 21 Aug 2005 19:25:20 -0000 Delivered-To: apmail-directory-commits-archive@directory.apache.org Received: (qmail 5838 invoked by uid 500); 21 Aug 2005 19:25:19 -0000 Mailing-List: contact commits-help@directory.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@directory.apache.org Delivered-To: mailing list commits@directory.apache.org Received: (qmail 5819 invoked by uid 99); 21 Aug 2005 19:25:19 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 21 Aug 2005 12:25:19 -0700 X-ASF-Spam-Status: No, hits=-9.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Sun, 21 Aug 2005 12:25:37 -0700 Received: (qmail 49131 invoked by uid 65534); 21 Aug 2005 19:25:18 -0000 Message-ID: <20050821192518.49130.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r234321 - in /directory/asn1/branches/asn1-new-ber/ber-new/src/java/main/org/apache/asn1new: DecoderException.java EncoderException.java Date: Sun, 21 Aug 2005 19:25:17 -0000 To: commits@directory.apache.org From: elecharny@apache.org X-Mailer: svnmailer-1.0.3 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: elecharny Date: Sun Aug 21 12:25:13 2005 New Revision: 234321 URL: http://svn.apache.org/viewcvs?rev=234321&view=rev Log: created Added: directory/asn1/branches/asn1-new-ber/ber-new/src/java/main/org/apache/asn1new/DecoderException.java (with props) directory/asn1/branches/asn1-new-ber/ber-new/src/java/main/org/apache/asn1new/EncoderException.java Added: directory/asn1/branches/asn1-new-ber/ber-new/src/java/main/org/apache/asn1new/DecoderException.java URL: http://svn.apache.org/viewcvs/directory/asn1/branches/asn1-new-ber/ber-new/src/java/main/org/apache/asn1new/DecoderException.java?rev=234321&view=auto ============================================================================== --- directory/asn1/branches/asn1-new-ber/ber-new/src/java/main/org/apache/asn1new/DecoderException.java (added) +++ directory/asn1/branches/asn1-new-ber/ber-new/src/java/main/org/apache/asn1new/DecoderException.java Sun Aug 21 12:25:13 2005 @@ -0,0 +1,40 @@ +/* + * Copyright 2005 The Apache Software Foundation + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ +package org.apache.asn1new; + +/** + * Thrown when a Decoder has encountered a failure condition during a decode. + * + * @author Apache Directory Project + */ +public class DecoderException extends Exception +{ + public static final long serialVersionUID = 1L; + + //~ Constructors ------------------------------------------------------------------------------- + + /** + * Creates a DecoderException + * + * @param message A message with meaning to a human + */ + public DecoderException( String message ) + { + super( message ); + } + +} Propchange: directory/asn1/branches/asn1-new-ber/ber-new/src/java/main/org/apache/asn1new/DecoderException.java ------------------------------------------------------------------------------ svn:executable = * Added: directory/asn1/branches/asn1-new-ber/ber-new/src/java/main/org/apache/asn1new/EncoderException.java URL: http://svn.apache.org/viewcvs/directory/asn1/branches/asn1-new-ber/ber-new/src/java/main/org/apache/asn1new/EncoderException.java?rev=234321&view=auto ============================================================================== --- directory/asn1/branches/asn1-new-ber/ber-new/src/java/main/org/apache/asn1new/EncoderException.java (added) +++ directory/asn1/branches/asn1-new-ber/ber-new/src/java/main/org/apache/asn1new/EncoderException.java Sun Aug 21 12:25:13 2005 @@ -0,0 +1,40 @@ +/* + * Copyright 2005 The Apache Software Foundation + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ +package org.apache.asn1new; + +/** + * Thrown when an Encoder has encountered a failure condition during an encoding. + * + * @author Apache Directory Project + */ +public class EncoderException extends Exception +{ + public static final long serialVersionUID = 1L; + + //~ Constructors ------------------------------------------------------------------------------- + + /** + * Creates a EncoderException + * + * @param message A message with meaning to a human + */ + public EncoderException( String message ) + { + super( message ); + } + +}